crusto/Cargo.toml

30 lines
650 B
TOML
Raw Normal View History

2024-12-05 21:05:22 +00:00
[workspace]
members = [
".",
"vespid",
"vespid/macros"
]
[workspace.dependencies]
vespid.path = "vespid"
axum = "0.7"
tokio = { version = "1", features = ["full"] }
[package]
name = "crusto"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-12-08 20:53:36 +00:00
vespid = { workspace = true, features = ["icons"] }
2024-12-05 21:05:22 +00:00
tokio.workspace = true
axum.workspace = true
eyre = "0.6.12"
color-eyre = "0.6.3"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
tracing-error = "0.2.1"
2024-12-06 14:07:27 +00:00
git2 = "0.19.0"
2024-12-08 20:53:36 +00:00
icondata = { version = "0.5", default-features = false, features = ["lucide"] }
tower-http = { version = "0.6.2", features = ["full"] }