forked from vorot93/binance-async-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (46 loc) · 1.27 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
47
48
49
50
51
52
53
54
55
56
[package]
name = "binance-async"
version = "0.2.0"
edition = "2018"
license = "MIT OR Apache-2.0"
authors = [
"Flavio Oliveira <[email protected]>",
"Weiyüen Wu <[email protected]>",
"Artem Vorotnikov <[email protected]>",
]
description = "Rust Library for the Binance API (Async)"
keywords = ["cryptocurrency", "trading", "binance", "async"]
documentation = "https://docs.rs/crate/binance-async"
repository = "https://github.com/dovahcrow/binance-async-rs"
readme = "README.md"
[badges]
travis-ci = { repository = "dovahcrow/binance-async-rs" }
[lib]
name = "binance_async"
path = "src/lib.rs"
[dependencies]
failure = "0.1"
tracing = "0.1"
tungstenite = "0.10"
tokio-tungstenite = { version = "0.10", features = ["tls"] }
url = "2"
futures = "0.3"
headers = "0.3"
http = "0.2"
maplit = "1"
once_cell = "1"
reqwest = { version = "0.10", features = ["json"] }
reqwest-ext = { git = "https://github.com/vorot93/reqwest-ext" }
snafu = "0.6"
streamunordered = "0.5"
tokio = { version = "0.2", features = ["tcp"] }
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
hex = "0.4"
sha2 = "0.8"
hmac = "0.7"
[dev-dependencies]
csv = "1"
tokio = { version = "0.2", features = ["full"] }
tracing-subscriber = "0.2"