forked from dovahcrow/bitmex-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (35 loc) · 840 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
[package]
name = "bitmex"
version = "0.1.6-alpha.0"
authors = ["Weiyüen Wu <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Rust Library for the BitMEX API (Async)"
keywords = ["cryptocurrency", "trading", "bitmex", "async"]
documentation = "https://docs.rs/crate/bitmex"
repository = "https://github.com/dovahcrow/bitmex-rs"
readme = "README.md"
edition = "2018"
[dependencies]
hyper = "0.12"
hyper-tls = "0.3"
url = "1"
futures = "0.1"
tokio = "0.1"
failure = "0.1"
log = "0.4"
serde = "1"
serde_json = "1"
serde_derive = "1"
chrono = { version = "0.4", features = ["serde"] }
hex = "0.3"
ring = "0.14"
uuid = { version = "0.7", features = ["serde"] }
# maplit = "1"
tungstenite = "0.6"
tokio-tungstenite = "0.6"
lazy_static = "1"
[features]
dev = []
[dev-dependencies]
dotenv = "0.13"
env_logger = "0.6"