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>
46 lines
875 B
TOML
46 lines
875 B
TOML
[package]
|
|
name = "trading-data"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Foxhunt Trading System"]
|
|
license = "MIT"
|
|
description = "Trading data repository layer for high-frequency trading system"
|
|
|
|
[dependencies]
|
|
# Database layer
|
|
sqlx.workspace = true
|
|
|
|
# Async runtime
|
|
tokio.workspace = true
|
|
async-trait.workspace = true
|
|
|
|
# Serialization
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
|
|
# Financial types
|
|
rust_decimal.workspace = true
|
|
rust_decimal_macros.workspace = true
|
|
|
|
# Time handling
|
|
chrono.workspace = true
|
|
|
|
# Unique identifiers
|
|
uuid.workspace = true
|
|
|
|
# Error handling
|
|
thiserror.workspace = true
|
|
anyhow.workspace = true
|
|
|
|
# Logging
|
|
tracing.workspace = true
|
|
|
|
# Internal workspace crates
|
|
common = { workspace = true, features = ["database"] }
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
rstest = "0.18"
|
|
|
|
[features]
|
|
default = []
|
|
test-utils = [] |