OrangeGuidanceTomestone/server/Cargo.toml

24 lines
653 B
TOML
Raw Normal View History

2022-09-03 10:35:15 +00:00
[package]
name = "server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
base64 = "0.13"
2022-09-05 08:02:34 +00:00
bytes = "1"
2022-09-05 04:02:36 +00:00
chrono = "0.4"
2022-09-10 07:06:49 +00:00
if_chain = "1"
2022-09-03 10:35:15 +00:00
rand = "0.8"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
sha3 = "0.10"
sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "sqlite", "chrono"] }
2022-09-03 12:59:06 +00:00
toml = "0.5"
2022-09-03 10:35:15 +00:00
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
2023-01-20 20:13:52 +00:00
tokio-stream = { version = "0.1", default-features = false, features = ["net"] }
2022-09-03 10:35:15 +00:00
uuid = { version = "1", features = ["serde", "v4"] }
warp = "0.3"