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>
53 lines
1.2 KiB
TOML
53 lines
1.2 KiB
TOML
[package]
|
|
name = "risk-data"
|
|
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
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
description = "Risk data repository for high-frequency trading risk management"
|
|
|
|
[dependencies]
|
|
# Core workspace dependencies
|
|
|
|
# Database dependencies
|
|
sqlx.workspace = true
|
|
redis.workspace = true
|
|
|
|
# Async runtime and utilities
|
|
async-trait.workspace = true
|
|
|
|
# Serialization and data handling
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
chrono.workspace = true
|
|
uuid.workspace = true
|
|
rust_decimal.workspace = true
|
|
|
|
# Risk calculation dependencies
|
|
|
|
# Logging and monitoring
|
|
tracing.workspace = true
|
|
|
|
# Error handling
|
|
thiserror.workspace = true
|
|
|
|
# Performance utilities
|
|
|
|
# Development and testing dependencies
|
|
[dev-dependencies]
|
|
# Note: These dev-dependencies are currently unused but kept for future testing needs
|
|
# tokio-test.workspace = true
|
|
# tempfile.workspace = true
|
|
# rstest.workspace = true
|
|
# proptest.workspace = true
|
|
# testcontainers.workspace = true # REMOVED - too heavy
|
|
|
|
[lints]
|
|
workspace = true |