[[bench]]
harness = false
name = "handle_incoming"
path = "benches/handle_incoming.rs"
[[bench]]
harness = false
name = "json_parsing"
path = "benches/json_parsing.rs"
[[bench]]
harness = false
name = "mutex_contention"
path = "benches/mutex_contention.rs"
[[bench]]
harness = false
name = "subscription_throughput"
path = "benches/subscription_throughput.rs"
[dependencies.dashmap]
version = "6.1.0"
[dependencies.futures-util]
version = "0.3"
[dependencies.jsonwebtoken]
features = ["rust_crypto"]
version = "10.2.0"
[dependencies.log]
version = "0.4.29"
[dependencies.rustls]
features = ["aws-lc-rs"]
version = "0.23.35"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_repr]
version = "0.1.20"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tokio]
features = ["fs", "time", "sync", "rt-multi-thread", "macros"]
version = "1"
[dependencies.tokio-tungstenite]
features = ["rustls-tls-webpki-roots"]
version = "0.28"
[dev-dependencies.chrono]
version = "0.4.42"
[dev-dependencies.criterion]
features = ["async_tokio", "html_reports"]
version = "0.8.1"
[dev-dependencies.csv]
version = "1.4.0"
[dev-dependencies.dotenv]
version = "0.15.0"
[dev-dependencies.rust_decimal]
version = "1.39.0"
[dev-dependencies.rust_decimal_macros]
version = "1.39.0"
[dev-dependencies.serial_test]
features = ["async"]
version = "3.2.0"
[dev-dependencies.simple_logger]
version = "5.1.0"
[dev-dependencies.tokio-test]
version = "0.4"
[[example]]
name = "collect_all_trades"
path = "examples/collect_all_trades.rs"
[[example]]
name = "collect_ohlc_data"
path = "examples/collect_ohlc_data.rs"
[[example]]
name = "ohlc_streamer"
path = "examples/ohlc_streamer.rs"
[[example]]
name = "simple_quoter"
path = "examples/simple_quoter.rs"
[[example]]
name = "subscribe_account"
path = "examples/subscribe_account.rs"
[[example]]
name = "subscribe_ticker"
path = "examples/subscribe_ticker.rs"
[lib]
name = "thalex_rust_sdk"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Trading client for Thalex exchange"
edition = "2024"
license = "MIT OR Apache-2.0"
name = "thalex_rust_sdk"
readme = "README.md"
repository = "https://github.com/8ball030/thalex_rust_sdk"
version = "0.1.21"
[profile.dev]
debug = 0
opt-level = 0
[[test]]
name = "accounting_test"
path = "tests/accounting_test.rs"
[[test]]
name = "bot_test"
path = "tests/bot_test.rs"
[[test]]
name = "conditional_test"
path = "tests/conditional_test.rs"
[[test]]
name = "historical_data_test"
path = "tests/historical_data_test.rs"
[[test]]
name = "market_data_test"
path = "tests/market_data_test.rs"
[[test]]
name = "mm_test"
path = "tests/mm_test.rs"
[[test]]
name = "trading_test"
path = "tests/trading_test.rs"
[[test]]
name = "ws_test"
path = "tests/ws_test.rs"