-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
49 lines (46 loc) · 1.32 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
[package]
name = "flowsurface"
version = "0.5.0"
edition = "2021"
[dependencies]
iced = { version = "0.14.0-dev", features = ["canvas", "tokio", "image", "advanced", "lazy"] }
iced_futures = "0.13.2"
chrono = "0.4.38"
tokio = { version = "1.41.1", features = ["full", "macros"] }
tokio-tungstenite = "0.21.0"
url = "2.5.3"
tokio-native-tls = "0.3.1"
base64 = "0.22.1"
native-tls = "0.2.12"
tungstenite = "0.21.0"
futures = "0.3.31"
futures-util = "0.3.31"
serde_json = "1.0.132"
serde = { version = "1.0", features = ["derive"] }
reqwest = { version = "0.12.9", features = ["json"] }
hmac = "0.12.1"
sha2 = "0.10.8"
hex = "0.4.3"
bytes = "1.8.0"
sonic-rs = "0.3.17"
fastwebsockets = { version = "0.8.0", features = ["upgrade"] }
http-body-util = "0.1.2"
hyper = { version = "1", features = ["http1", "server", "client"] }
hyper-util = { version = "0.1.10", features = ["tokio"] }
tokio-rustls = "0.24.1"
webpki-roots = "0.23.1"
rustc-hash = "2.0.0"
fern = "0.6.2"
log = "0.4.22"
thiserror = "1.0.68"
ordered-float = "4.5.0"
regex = "1.11.1"
rust_decimal = "1.36.0"
uuid = { version = "1.11.0", features = ["v4"] }
zip = "2.2.1"
csv = "1.3.1"
[dependencies.async-tungstenite]
version = "0.25"
features = ["tokio-rustls-webpki-roots"]
[patch.crates-io]
iced = { git = "https://github.com/iced-rs/iced", rev = "e722c4ee4f80833ba0b1013cadd546ebc3f490ce" }