-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
29 lines (26 loc) · 839 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
[package]
name = "kucoin"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1"
async-tungstenite = { version = "0.17", features = ["tokio-native-tls"] }
base64 = "0.13"
chrono = { version = "0.4", features = ["serde"] }
derive_more = "0.99"
futures-util = "0.3"
hmac = "0.12"
num-derive = "0.3"
num-traits = "0.2"
reqwest = { version = "0.11", features = ["json"] }
rust_decimal = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_urlencoded = "0.7"
serde-value = "0.7"
sha2 = "0.10"
snafu = "0.7"
tokio = { version = "1", features = ["macros", "parking_lot", "sync", "time"] }
[dev-dependencies]
tokio = { version = "1", features = ["macros", "parking_lot", "sync", "time", "rt-multi-thread"] }