Files
foxhunt/testing/e2e/Cargo.toml
jgrusewski 0e2f82ab54 feat(cuda): complete Candle elimination + cudarc 0.19.3 upgrade
Integration of 7 hive agents:
- gpu_replay_buffer: 103 Candle refs → 0 (14 new CUDA kernels)
- gpu_action_selector: 27 refs → CudaSlice API
- signal_adapter: 26 refs → 3 new CUDA kernels
- gpu_experience_collector: 5 refs → CudaSlice output
- gpu_weights+iql+guard: 13 refs eliminated
- DQN forward: new forward_only_kernel for inference
- VarMap: F32 contiguous enforcement, fast-path extraction

New modules:
- ml-core/cuda_autograd: GpuTensor, GpuVarStore, GpuLinear, GpuAdamW
- ml-ppo/cuda_nn: CudaLinear, CudaLSTM, CudaAdam, networks
- ml-supervised/gpu_tensor: GpuTensor + cuBLAS for KAN, Diffusion

cudarc 0.17.3 → 0.19.3 (via candle 0.9.1 → 0.9.2)
safetensors 0.4 → 0.7

Zero errors, zero warnings workspace-wide.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-17 15:13:04 +01:00

87 lines
1.9 KiB
TOML

[package]
name = "foxhunt_e2e"
version = "0.1.0"
edition = "2021"
[dependencies]
# Core async runtime
tokio = { workspace = true }
tokio-test = "0.4"
tokio-stream = "0.1"
# gRPC and protobuf
tonic = { version = "0.14", features = ["transport", "tls-ring", "tls-webpki-roots"] }
tonic-prost = "0.14"
prost = "0.14"
prost-types = "0.14"
# Database
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres", "chrono", "uuid", "json", "bigdecimal"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Time and UUID
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.0", features = ["v4", "serde"] }
# JWT authentication
jsonwebtoken = "9.3"
# Environment variables
dotenvy = "0.15"
# Numerical
rust_decimal = { version = "1.32", features = ["serde-float"] }
bigdecimal = "0.4"
# Utilities
futures = "0.3"
rand = "0.8"
# HTTP client
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
# CLI
clap = { version = "4.0", features = ["derive"] }
# Testing
assert_matches = "1.5"
# Benchmarking
criterion = { version = "0.5", features = ["async_tokio", "html_reports"] }
hdrhistogram = "7.5"
# Local dependencies
trading_engine = { path = "../../crates/trading_engine" }
data = { path = "../../crates/data" }
ml = { path = "../../crates/ml" }
ml-training-service = { path = "../../services/ml_training_service" }
risk = { path = "../../crates/risk" }
config = { path = "../../crates/config" }
common = { path = "../../crates/common" }
# DBN data parsing
dbn = "0.22"
# Candle for ML
candle-core = { git = "https://github.com/huggingface/candle", rev = "971e7ed0" }
[build-dependencies]
tonic-prost-build = "0.14"
[[bench]]
name = "e2e_latency_benchmark"
path = "benches/e2e_latency_benchmark.rs"
harness = false