-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
60 lines (51 loc) · 1.24 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
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "les"
version = "0.1.0-alpha.2"
edition = "2021"
authors = ["Vasanthkumar Kalaiselvan <itsparser@gmail.com>"]
description = "less is the crate provide binding for crypto network"
license = "MIT"
repository = "https://github.com/crabby-ai/les"
keywords = ["cryptocurrency", "api", "trading"]
exclude = [
"tests/*",
".github/*"
]
include = [
"**/*.rs",
"Cargo.toml",
]
[features]
default = ["binance", "coinbase"]
binance = []
coinbase = []
[dependencies]
async-trait = "0.1.42"
futures = "0.3.12"
chrono = "0.4.19"
rust_decimal = "1.14.0"
serde = { version = "1.0.123", features = ["derive"] }
serde_json = "1.0.62"
thiserror = "1.0.23"
derive_more = "0.99.11"
url = "2.2.0"
serde_urlencoded = "0.7.0"
anyhow = "1.0.38"
reqwest = { version = "0.11", features = ["json", "blocking"] }
tokio-tungstenite = { version = "0.13", features = ["tls"] }
tokio = "1.6.0"
env_logger="0.10.0"
hex = "0.4.2"
log = "0.4.8"
hmac = "0.8.1"
sha2 = "0.9.1"
#################### message crate
futures-util = "0.3.12"
[dev-dependencies]
rust_decimal = "1.14.3"
tokio = { version = "1.0", features = ["full"] }
cross-test = "0.1.6"
futures = "0.3"
dotenv = "0.15.0"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = "0.3.20"