[package]
edition = "2021"
name = "sandbox-quant"
version = "0.2.13"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal-based multi-strategy crypto trading sandbox with centralized risk controls"
documentation = "https://docs.rs/sandbox-quant"
readme = "README.md"
keywords = [
"trading",
"binance",
"terminal",
"risk",
"quant",
]
categories = [
"command-line-utilities",
"finance",
]
license = "MIT"
repository = "https://github.com/sehyunsix/sandbox-quant"
[lib]
name = "sandbox_quant"
path = "src/lib.rs"
[[bin]]
name = "demo_broker_probe"
path = "src/bin/demo_broker_probe.rs"
[[bin]]
name = "sandbox-quant"
path = "src/main.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "ema_tests"
path = "tests/ema_tests.rs"
[[test]]
name = "ma_crossover_tests"
path = "tests/ma_crossover_tests.rs"
[[test]]
name = "position_tests"
path = "tests/position_tests.rs"
[[test]]
name = "sma_tests"
path = "tests/sma_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.crossterm]
version = "0.28"
[dependencies.dotenvy]
version = "0.15"
[dependencies.futures-util]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.ratatui]
version = "0.29"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.rustls]
version = "0.23"
features = ["ring"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-tungstenite]
version = "0.24"
features = ["rustls-tls-webpki-roots"]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.tokio-test]
version = "0.4"
[profile.dev]
debug = 1
[profile.dev.package."*"]
debug = 0
[profile.test]
debug = 1
[profile.test.package."*"]
debug = 0