[package]
edition = "2021"
name = "sandbox-quant"
version = "1.0.1"
build = false
exclude = [
"archive/**",
"docs/archive/**",
"config/**",
".github/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Exchange-truth trading core for Binance Spot and Futures"
documentation = "https://docs.rs/sandbox-quant"
readme = "README.md"
keywords = [
"trading",
"binance",
"exchange",
"cli",
"futures",
]
categories = [
"command-line-utilities",
"finance",
]
license = "MIT"
repository = "https://github.com/sehyunsix/sandbox-quant"
[lib]
name = "sandbox_quant"
path = "src/lib.rs"
[[bin]]
name = "sandbox-quant"
path = "src/main.rs"
[[test]]
name = "app_runtime_tests"
path = "tests/app_runtime_tests.rs"
[[test]]
name = "auth_error_integration_tests"
path = "tests/auth_error_integration_tests.rs"
[[test]]
name = "binance_adapter_tests"
path = "tests/binance_adapter_tests.rs"
[[test]]
name = "binance_http_transport_tests"
path = "tests/binance_http_transport_tests.rs"
[[test]]
name = "binance_live_integration_tests"
path = "tests/binance_live_integration_tests.rs"
[[test]]
name = "bootstrap_tests"
path = "tests/bootstrap_tests.rs"
[[test]]
name = "cli_command_tests"
path = "tests/cli_command_tests.rs"
[[test]]
name = "cli_output_tests"
path = "tests/cli_output_tests.rs"
[[test]]
name = "core_types_tests"
path = "tests/core_types_tests.rs"
[[test]]
name = "reconciliation_tests"
path = "tests/reconciliation_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.crossterm]
version = "0.28"
[dependencies.dotenvy]
version = "0.15"
[dependencies.duckdb]
version = "1.1.1"
features = ["bundled"]
[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 = [
"blocking",
"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.url]
version = "2"
[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