ccxt-core 0.1.4

Core types and traits for CCXT Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.91"
name = "ccxt-core"
version = "0.1.4"
authors = ["Praying"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types and traits for CCXT Rust"
readme = false
license = "MIT"
resolver = "2"

[features]
backtrace = []
compression = [
    "reqwest/brotli",
    "reqwest/deflate",
]
default = [
    "rustls-tls",
    "websocket",
]
native-tls = [
    "reqwest/native-tls",
    "tokio-tungstenite?/native-tls",
    "tokio-tungstenite?/connect",
]
rustls-tls = [
    "reqwest/rustls",
    "tokio-tungstenite?/rustls-tls-native-roots",
    "tokio-tungstenite?/connect",
]
test-utils = [
    "dotenvy",
    "envy",
]
websocket = ["tokio-tungstenite"]

[lib]
name = "ccxt_core"
path = "src/lib.rs"

[[test]]
name = "error_property_tests"
path = "tests/error_property_tests.rs"

[[test]]
name = "financial_property_tests"
path = "tests/financial_property_tests.rs"

[[test]]
name = "logging_test"
path = "tests/logging_test.rs"

[[test]]
name = "market_symbol_integration_test"
path = "tests/market_symbol_integration_test.rs"

[[test]]
name = "symbol_property_tests"
path = "tests/symbol_property_tests.rs"

[[test]]
name = "thread_safety_property_test"
path = "tests/thread_safety_property_test.rs"

[[test]]
name = "timestamp_security_test"
path = "tests/timestamp_security_test.rs"

[[test]]
name = "trait_object_safety_test"
path = "tests/trait_object_safety_test.rs"

[[test]]
name = "ws_property_tests"
path = "tests/ws_property_tests.rs"

[[test]]
name = "ws_reconnect_test"
path = "tests/ws_reconnect_test.rs"

[[bench]]
name = "timestamp_benchmark"
path = "benches/timestamp_benchmark.rs"
harness = false

[dependencies.anyhow]
version = "1.0"

[dependencies.async-stream]
version = "0.3.6"

[dependencies.async-trait]
version = "0.1"

[dependencies.base64]
version = "0.22"

[dependencies.bitflags]
version = "2.9"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.dashmap]
version = "6.1"

[dependencies.derive_more]
version = "2.1.1"
features = ["debug"]

[dependencies.dotenvy]
version = "0.15"
optional = true

[dependencies.ed25519-dalek]
version = "2.1"

[dependencies.envy]
version = "0.4"
optional = true

[dependencies.futures]
version = "0.3"

[dependencies.futures-util]
version = "0.3"

[dependencies.hex]
version = "0.4"

[dependencies.hmac]
version = "0.12"

[dependencies.indexmap]
version = "2.1"
features = ["serde"]

[dependencies.md-5]
version = "0.10"

[dependencies.once_cell]
version = "1.19"

[dependencies.parking_lot]
version = "0.12"

[dependencies.rand]
version = "0.9"

[dependencies.regex]
version = "1.10"

[dependencies.reqwest]
version = "0.13"
features = [
    "json",
    "rustls",
    "gzip",
    "stream",
    "json",
    "gzip",
]
default-features = false

[dependencies.rust_decimal]
version = "1.39"

[dependencies.rust_decimal_macros]
version = "1.39"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sha1]
version = "0.10"

[dependencies.sha2]
version = "0.10"

[dependencies.sha3]
version = "0.10"

[dependencies.thiserror]
version = "2.0.17"

[dependencies.tokio]
version = "1.35"
features = ["full"]

[dependencies.tokio-tungstenite]
version = "0.28"
features = [
    "rustls-tls-native-roots",
    "connect",
]
optional = true
default-features = false

[dependencies.tokio-util]
version = "0.7"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "fmt",
    "json",
]

[dependencies.url]
version = "2.5"

[dependencies.urlencoding]
version = "2.1"

[dependencies.zeroize]
version = "1.8"
features = ["derive"]

[dev-dependencies.criterion]
version = "0.8"
features = ["async_tokio"]

[dev-dependencies.dotenvy]
version = "0.15"

[dev-dependencies.envy]
version = "0.4"

[dev-dependencies.paste]
version = "1.0"

[dev-dependencies.proptest]
version = "1.4"

[dev-dependencies.tokio-test]
version = "0.4"