-
Notifications
You must be signed in to change notification settings - Fork 33
/
Cargo.toml
32 lines (30 loc) · 979 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
[package]
authors = ["Eric Abrahams <[email protected]>"]
description = "Rust async library for the Kucoin API"
documentation = "https://docs.rs/crate/kucoin_rs"
edition = "2018"
homepage = "https://github.com/esvwdev/kucoin_rs"
keywords = ["kucoin", "cyptocurrency", "trading", "algotrading", "async"]
license = "MIT"
name = "kucoin_rs"
readme = "README.md"
repository = "https://github.com/escwdev/kucoin_rs"
version = "0.4.4"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
base64 = "0.12.0"
failure = "0.1.7"
futures = "0.3.9"
hmac = "0.7.1"
pin-project = "1.0.5"
serde = "1.0.104"
serde_derive = "1.0.104"
serde_json = "1.0.48"
sha2 = "0.8.1"
streamunordered = "0.5"
reqwest = { version = "0.11.1", features = ["json", "rustls-tls"] }
tokio = { version = "1.0.1", features = ["full"]}
tokio-native-tls = "0.3.0"
tokio-tungstenite = { version = "0.13.0", features = ["tls"] }
tungstenite = "0.13.0"
url = "2.1.1"