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

24 lines
750 B
TOML
Raw Normal View History

2024-04-20 18:17:55 -07:00
[package]
name = "kordophone"
version = "0.1.0"
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"
2024-06-01 18:16:25 -07:00
ctor = "0.2.8"
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 = [] }
pretty_env_logger = "0.5.0"
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"] }
2024-06-01 18:16:25 -07:00
tower = "0.4.13"
tower-http = { version = "0.5.2", features = ["trace"] }
tower-hyper = "0.1.1"
2024-04-21 15:14:16 -07:00
uuid = { version = "1.6.1", features = ["v4", "fast-rng", "macro-diagnostics"] }