-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
39 lines (35 loc) · 994 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "binance-pay-rs"
version = "0.3.2"
edition = "2021"
authors = ["Akarsh Jain <[email protected]>"]
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"