Files
foxhunt/crates/config/Cargo.toml
jgrusewski 9c3d741a08 refactor: restructure repo — crates/, bin/, testing/ layout
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>
2026-02-25 11:56:00 +01:00

50 lines
1.0 KiB
TOML

[package]
name = "config"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
description = "Configuration management for Foxhunt HFT trading system"
[dependencies]
# Core dependencies
serde.workspace = true
serde_json.workspace = true
serde_yaml.workspace = true
toml.workspace = true
anyhow.workspace = true
thiserror.workspace = true
tracing.workspace = true
# Async runtime
tokio.workspace = true
async-trait.workspace = true
# Database
sqlx.workspace = true
# Vault integration
vaultrs.workspace = true
# Secure secret handling
secrecy.workspace = true
zeroize.workspace = true
# Internal dependencies
# common dependency removed to avoid circular dependency
# Other utilities
chrono.workspace = true
uuid.workspace = true
rust_decimal.workspace = true
regex.workspace = true
num_cpus.workspace = true
[dev-dependencies]
serial_test = "3.2"
[features]
default = []
postgres = ["sqlx/postgres"]
test-utils = [] # Test utilities for integration tests