-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (50 loc) · 1.29 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (50 loc) · 1.29 KB
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
[package]
name = "venues"
version = "0.1.0"
edition = "2024"
[dependencies]
# Internal dependencies
websockets = { path = "../websockets" }
rest = { path = "../rest" }
# External dependencies
tokio = { version = "1.0", features = ["full"] }
tokio-tungstenite = { version = "0.27.0", features = ["native-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_urlencoded = "0.7"
reqwest = { version = "0.12.15", features = ["json"] }
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3"
async-trait = "0.1"
thiserror = "2.0.12"
parking_lot.workspace = true
tracing.workspace = true
ratatui = { workspace = true }
crossterm = { workspace = true }
rust_decimal.workspace = true
dotenv = "0.15"
clap.workspace = true
aes-gcm = "0.10.3"
base64 = "0.22.1"
rand = "0.9.1"
governor = "0.10.0"
nonzero_ext = "0.3"
uuid = { version = "1.0", features = ["v4"] }
binance_macros = { path = "../binance_macros" }
url.workspace = true
num_enum = "0.7.3"
secrecy = "0.10.3"
[lints]
workspace = true
[[example]]
name = "cryptocom_rate_limit"
path = "examples/cryptocom/rate_limit_example.rs"
[[example]]
name = "okx_get_underlying"
path = "examples/okx/get_underlying.rs"
[dev-dependencies]
tokio-test = "0.4"
tracing-subscriber = { workspace = true }