forked from dovahcrow/binance-async-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (39 loc) · 958 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
40
41
42
43
44
45
46
47
48
49
[package]
name = "binance-async"
version = "0.2.0"
edition = "2015"
license = "MIT OR Apache-2.0"
authors = ["Flavio Oliveira <[email protected]>", "Weiyüen Wu <[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"
log = "0.4"
result = "1"
sugar = "0.2"
hyper = "0.12"
hyper-tls = "0.3"
tungstenite = "0.6"
tokio-tungstenite = "0.6"
url = "1"
futures = "0.1"
tokio = "0.1"
chrono = { version = "0.4", features = ["serde"] }
serde = "1"
serde_json = "1"
serde_derive = "1"
hex = "0.3"
sha2 = "0.8"
hmac = "0.7"
[dev-dependencies]
csv = "1"
dotenv = "0.13"
env_logger = "0.5"