Move 17 library crates into crates/, CLI binary into bin/fxt, consolidate 10 test crates into testing/, split config crate from deployment config files. Root directory reduced from 38+ to ~17 directories. All Cargo.toml paths and build.rs proto refs updated. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
43 lines
875 B
TOML
43 lines
875 B
TOML
[package]
|
|
name = "model_loader"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
publish.workspace = true
|
|
description = "ML model loading and caching infrastructure for Foxhunt HFT system"
|
|
|
|
[dependencies]
|
|
# Internal workspace crates
|
|
storage = { path = "../storage" }
|
|
common.workspace = true
|
|
|
|
# Core workspace dependencies
|
|
anyhow.workspace = true
|
|
tracing.workspace = true
|
|
async-trait.workspace = true
|
|
|
|
# Model versioning
|
|
semver.workspace = true
|
|
|
|
# Caching
|
|
lru = "0.12"
|
|
|
|
# Serialization
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
# Synchronization
|
|
parking_lot.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["test-util"] }
|
|
chrono.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|