-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
47 lines (40 loc) · 1.13 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
[package]
name = "binance"
version = "0.17.0"
license = "MIT OR Apache-2.0"
authors = ["Flavio Oliveira <flavio@wisespace.io>"]
edition = "2018"
description = "Rust Library for the Binance API"
keywords = ["cryptocurrency", "trading", "binance"]
categories = ["api-bindings", "cryptography::cryptocurrencies"]
documentation = "https://docs.rs/crate/binance/"
repository = "https://github.com/wisespace-io/binance-rs"
readme = "README.md"
[badges]
travis-ci = { repository = "wisespace-io/binance-rs" }
[lib]
name = "binance"
path = "src/lib.rs"
[dependencies]
hex = "0.4"
hmac = "0.11.0"
sha2 = "0.9"
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0"
error-chain = { version = "0.12.4", default-features = false }
reqwest = { version = "0.11.3", features = ["json"] }
tungstenite = "0.13.0"
url = "2.2.2"
[features]
vendored-tls = ["reqwest/native-tls-vendored", "tungstenite/native-tls-vendored"]
[dev-dependencies]
csv ="1.1.6"
mockito = "0.30.0"
env_logger = "0.8.3"
criterion = "0.3"
float-cmp = "0.8.0"
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
[[bench]]
name = "websocket_benchmark"
harness = false