Files
foxhunt/crates/ml-features/Cargo.toml
jgrusewski 828417b523 fix: test reads threshold from dqn-smoketest.toml — no hardcoded values
Integration test now loads imbalance_bar_threshold and ewma_alpha from
config/training/dqn-smoketest.toml. Single source of truth for all
config values. Production threshold lowered to 0.5 for maximum bar yield.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-31 12:37:25 +02:00

51 lines
1.1 KiB
TOML

[package]
name = "ml-features"
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 = "Feature engineering for Foxhunt ML models"
[features]
default = []
[dependencies]
# Internal workspace crates
ml-core.workspace = true
common.workspace = true
data = { path = "../data" }
# Serialization and error handling
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
bincode.workspace = true
anyhow.workspace = true
chrono.workspace = true
chrono-tz = "0.10"
tracing.workspace = true
once_cell = "1.19"
# Async and parallelism
tokio.workspace = true
rayon.workspace = true
# Data loading (DBN/Databento)
dbn = "0.42"
zstd.workspace = true
rand.workspace = true
[dev-dependencies]
tokio = { workspace = true, features = ["test-util", "macros"] }
approx.workspace = true
toml.workspace = true
[lints]
workspace = true