-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
44 lines (42 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
[package]
name = "iced-trade"
version = "0.4.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
iced = { git = "https://github.com/iced-rs/iced.git", features = ["canvas", "tokio"] }
chrono = "0.4.37"
tokio = { version = "1.37.0", features = ["full", "macros"] }
tokio-tungstenite = "0.21.0"
url = "2.5.0"
tokio-native-tls = "0.3.1"
base64 = "0.22.0"
native-tls = "0.2.11"
tungstenite = "0.21.0"
futures = "0.3.30"
futures-util = "0.3.30"
serde_json = "1.0.115"
serde = { version = "1.0", features = ["derive"] }
reqwest = { version = "0.12.2", features = ["json"] }
hmac = "0.12.1"
sha2 = "0.10.8"
hex = "0.4.3"
iced_table = "0.12.0"
iced_futures = "0.12.0"
anyhow = "1.0.86"
bytes = "1.6.0"
sonic-rs = "0.3.7"
fastwebsockets = { version = "0.7.2", features = ["upgrade"] }
http-body-util = "0.1.2"
hyper = { version = "1", features = ["http1", "server", "client"] }
hyper-util = { version = "0.1.0", features = ["tokio"] }
tokio-rustls = "0.24.0"
webpki-roots = "0.23.0"
uuid = { version = "1.10.0", features = ["v4"] }
rustc-hash = "2.0.0"
fern = "0.6.2"
log = "0.4.22"
thiserror = "1.0.63"
[dependencies.async-tungstenite]
version = "0.25"
features = ["tokio-rustls-webpki-roots"]