Files
data-server/README.md
T
Brummel c0b1268e14 Initial commit: data-server leaf crate extracted from myc
High-performance, thread-safe loader and cache for binary market data
files (M1/tick). No dependency on the rest of myc; only chrono, regex, zip.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-18 11:01:58 +02:00

21 lines
527 B
Markdown

# data-server
High-performance, thread-safe loader and cache for binary market data files
(Pepperstone M1 / tick format).
Extracted from the `myc` project as a standalone, dependency-free leaf crate
(only `chrono`, `regex`, `zip`).
## Usage
```toml
# Cargo.toml of the consuming project
data-server = { git = "http://192.168.178.103:3000/Brummel/data-server.git", branch = "main" }
```
For local co-development, override with a per-machine `.cargo/config.toml`:
```toml
paths = ["/home/brummel/dev/libs/data-server"]
```