[package] name = "binance-api" version = "0.1.0" edition = "2021" authors = ["Ivan L "] description = "Yet another async Binance API" readme = "README.md" license = "MIT OR Apache-2.0" keywords = ["cryptocurrency", "trading", "binance"] categories = ["api-bindings", "cryptography::cryptocurrencies"] repository = "https://github.com/qqnt/binance-api" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] thiserror = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" # HTTP request staff reqwest = { version = "0.11", features = ["json"] } serde_urlencoded = "0.7" hmac = "0.12" sha2 = "0.10" hex = "0.4" [dev-dependencies] tokio = { version = "1.21", features = ["macros", "rt-multi-thread"] }