grub/Cargo.toml

28 lines
680 B
TOML
Raw Normal View History

2023-08-10 21:10:48 +00:00
[package]
name = "grub"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.72"
automerge = "0.5.1"
axum = { version = "0.6.20", features = ["http2", "macros", "ws"] }
chrono = { version = "0.4.26", features = ["serde"] }
ciborium = "0.2.1"
2023-08-10 23:37:53 +00:00
clap = { version = "4.3.21", features = ["derive"] }
2023-08-10 21:10:48 +00:00
dashmap = "5.5.0"
derivative = "2.2.0"
flume = "0.10.14"
futures = "0.3.28"
2023-08-10 23:25:47 +00:00
mime_guess = "2.0.4"
rust-embed = "6.8.1"
2023-08-10 21:10:48 +00:00
serde = { version = "1.0.183", features = ["derive"] }
2023-08-10 22:55:32 +00:00
serde_bytes = "0.11.12"
2023-08-10 21:10:48 +00:00
serde_json = "1.0.104"
tokio = { version = "1.30.0", features = ["full"] }
uuid = "1.4.1"
[dependencies.mzlib]
git = "https://git.mzhang.io/michael/mzlib"
features = ["axum"]