forked from Igosuki/binance-rs-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (41 loc) · 1.22 KB
/
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
40
41
42
43
44
45
46
[package]
name = "binance-rs-async"
version = "1.1.4"
license = "MIT OR Apache-2.0"
authors = ["Guillaume Balaine [email protected]"]
edition = "2021"
description = "Async Rust Library for the Binance API"
keywords = ["cryptocurrency", "trading", "binance"]
documentation = "https://docs.rs/crate/binance-rs-async/"
repository = "https://github.com/Igosuki/binance-rs-async"
readme = "README.md"
[lib]
name = "binance"
path = "src/lib.rs"
[features]
rustls-tls = ["tokio-tungstenite/rustls-tls-webpki-roots", "reqwest/rustls-tls"]
native-tls = ["tokio-tungstenite/native-tls", "reqwest/native-tls"]
default = ["native-tls"]
futures_api = []
margin_api = []
savings_api = []
all_apis = ["futures_api", "margin_api", "savings_api"]
[dependencies]
chrono = "0.4"
futures = "0.3"
hex = "0.4"
reqwest = { version = "0.11", features = ["json"], default-features = false }
ring = "0.16"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_qs = "0.8"
thiserror = "1.0"
url = "2.2"
lazy_static = "1.4"
tokio-tungstenite = "0.16"
tokio = { version = "1.14", features = ["full"] }
[dev-dependencies]
csv = "1.1"
env_logger = "0.9"
tracing = { version = "0.1", features = ["release_max_level_debug", "log"] }
tokio-test = "0.4"