[package] name = "rusftx" version = "0.4.0" edition = "2021" license-file = "LICENSE" readme = "README.md" repository = "https://github.com/elertan/rusftx" description = "Rust bindings for the FTX REST and Websocket API" keywords = ["ftx", "api", "rest", "websocket", "crypto"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] tokio = { version = "1.21.2", features = ["rt-multi-thread", "macros"] } reqwest = { version = "0.11.12", features = ["json"] } serde = { version = "1.0.147", features = ["derive"] } serde_json = "1.0.87" builder-pattern = "0.4.2" tracing = "0.1.37" tracing-subscriber = "0.3.16" http = "0.2.8" chrono = { version = "0.4.22", features = ["serde"] } hmac-sha256 = "1.1.5" hex = "0.4.3" serde_urlencoded = "0.7.1" dotenv = "0.15.0" const_format = "0.2.30" rust_decimal = "1.26.1" rust_decimal_macros = "1.26.1" tokio-tungstenite = { version = "0.17.2", features = ["native-tls"] } futures = "0.3.25" async-trait = "0.1.58" serde_with = { version = "2.0.1", features = ["chrono"] }