-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
55 lines (51 loc) · 1.03 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
[package]
name = "binance"
version = "0.1.0"
edition = "2021"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1.0", features = ["full"] }
anyhow = "1.0"
tokio-tungstenite = { version = "0.17", features = ["native-tls"] }
futures-util = "0.3"
lazy_static = "1.5"
url = "2.2"
dotenv = "0.15"
sha2 = "0.9.5"
hmac = "0.8"
hex = "0.4.3"
once_cell = "1.17.1"
futures = "0.3"
nix = "0.25.0"
ring = "0.17"
tokio-stream = "0.1"
hashbrown = "0.12"
chrono = "0.4"
prometheus = "0.13"
crossbeam = "0.8"
dashmap = "6.0"
parking_lot = "0.12"
log = "0.4"
env_logger = "0.10"
num_cpus = "1.16"
petgraph = "0.6.3"
itertools = "0.10.5"
rand = "0.8"
teloxide = { version = "0.12", features = ["macros"] }
surge-ping = "0.8"
async-channel = "2.0"
[profile.dev]
debug = true
opt-level = 0
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true
debug = false
debug-assertions = false
[profile.release.package."*"]
opt-level = 3