[package] name = "binance-pay-rs" version = "0.3.2" edition = "2021" authors = ["Akarsh Jain "] license = "MIT" readme = "README.md" repository = "https://github.com/akarsh1995/binance-pay-rs" description = """ Unofficial Rust Library for the Binance Pay API """ keywords = ["bpay", "binance", "binance-pay-api"] categories = ["web-programming", "api-bindings", "asynchronous"] [lib] name = "bpay" path = "src/lib.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = "0.1.53" hex = "0.4.3" log = "0.4" pretty_env_logger = "0.4" rand = "0.8.5" reqwest = { version = "0.11.10", features = ["json"] } ring = "0.16.20" serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0" } thiserror = "1.0" tokio = { version = "1.18.0", features = ["rt-multi-thread", "macros"] } base64 = "0.13.0" rsa-der = "0.3.0" mockito = "0.31.0" [dev-dependencies] axum = "0.5.4" tower = "0.4.12"