forked from dovahcrow/bitmex-rs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
49 lines (40 loc) · 1.12 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
[package]
name = "bitmex"
version = "0.2.2"
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"
categories = ["api-bindings"]
[badges]
travis-ci = { repository = "dovahcrow/bitmex-rs", branch = "master" }
[dependencies]
reqwest = { version = "0.10.0", features = ["json"] }
hyper = "0.13"
hyper-tls = "0.4"
http = "0.2"
url = "2"
futures = "0.3"
tokio = { version = "0.2", features = ["macros"] }
pin-project = "0.4"
failure = "0.1"
fehler = "1"
log = "0.4"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
serde_urlencoded = "0.6"
chrono = { version = "0.4", features = ["serde"] }
hex = "0.4"
ring = "0.16"
uuid = { version = "0.8", features = ["serde"] }
tungstenite = "0.11"
tokio-tungstenite = { version = "0.11", features = ["tls"] }
lazy_static = "1"
derive_builder = "0.9"
[dev-dependencies]
dotenv = "0.15"
env_logger = "0.7"