| [package] | |
| name = "flash-crash-proxy" | |
| version = "0.4.0" | |
| edition = "2021" | |
| authors = ["Z.ai Quant Research"] | |
| description = "High-performance WebSocket proxy for Binance LOB streams" | |
| [dependencies] | |
| tokio = { version = "1.36", features = ["full"] } | |
| tokio-tungstenite = { version = "0.21", features = ["native-tls"] } | |
| serde = { version = "1.0", features = ["derive"] } | |
| serde_json = "1.0" | |
| futures-util = "0.3" | |
| clap = { version = "4.5", features = ["derive"] } | |
| tracing = "0.1" | |
| tracing-subscriber = "0.3" | |
| chrono = "0.4" | |
| [profile.release] | |
| opt-level = 3 | |
| lto = true | |
| codegen-units = 1 | |
| panic = "abort" | |