[package] name = "binance_connector_rust" version = "0.1.1" authors = ["pefish "] license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/pefish/rust-pefish-lib" documentation = "https://github.com/pefish/rust-pefish-lib" homepage = "https://github.com/pefish/rust-pefish-lib" description = "A simple connector to Binance Public API" exclude = ["docs", "/.travis.yml", "/appveyor.yml", ".gitignore"] autobenches = true edition = "2018" [dependencies] tokio = { version = "1.17.0", features = ["full"] } anyhow = "1.0.56" reqwest = { version = "0.11.11", features = ["blocking", "json"] } rust_decimal = "1.25.0" serde = { version = "1.0.137", features = ["derive"] } [[example]] name = "test" path = "examples/test.rs"