Private
Public Access
1
0
Files
Kordophone/kordophone/Cargo.toml

29 lines
900 B
TOML
Raw Normal View History

2024-04-20 18:17:55 -07:00
[package]
name = "kordophone"
2025-07-15 18:04:11 -07:00
version = "1.0.0"
2024-04-20 18:17:55 -07:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-04-21 15:14:16 -07:00
async-trait = "0.1.80"
base64 = "0.22.1"
2025-05-15 20:11:10 -07:00
bytes = "1.10.1"
chrono = { version = "0.4.38", features = ["serde"] }
2024-06-01 18:16:25 -07:00
ctor = "0.2.8"
env_logger = "0.11.5"
futures-util = "0.3.31"
2024-04-24 23:41:42 -07:00
hyper = { version = "0.14", features = ["full"] }
hyper-tls = "0.5.0"
2024-06-01 18:16:25 -07:00
log = { version = "0.4.21", features = [] }
2024-04-21 15:14:16 -07:00
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
2024-06-01 18:16:25 -07:00
serde_plain = "1.0.2"
2024-04-21 15:14:16 -07:00
time = { version = "0.3.17", features = ["parsing", "serde"] }
2024-04-21 23:09:37 -07:00
tokio = { version = "1.37.0", features = ["full"] }
tokio-tungstenite = "0.26.2"
2025-06-12 17:58:03 -07:00
tokio-util = { version = "0.7.15", features = ["futures-util"] }
tungstenite = "0.26.2"
urlencoding = "2.1.3"
2024-04-21 15:14:16 -07:00
uuid = { version = "1.6.1", features = ["v4", "fast-rng", "macro-diagnostics"] }