crusto/Cargo.toml

35 lines
794 B
TOML
Raw Normal View History

2024-12-05 21:05:22 +00:00
[workspace]
members = [
2024-12-09 11:55:19 +00:00
".", "magic",
2024-12-05 21:05:22 +00:00
"vespid",
"vespid/macros"
]
[workspace.dependencies]
vespid.path = "vespid"
2024-12-09 11:55:19 +00:00
magic.path = "magic"
icondata = { version = "0.5", default-features = false, features = ["lucide"] }
tailwind_fuse = { version = "0.3.1", features = ["variant"] }
2024-12-05 21:05:22 +00:00
axum = "0.7"
tokio = { version = "1", features = ["full"] }
[package]
name = "crusto"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-12-09 11:55:19 +00:00
vespid.workspace = true
magic.workspace = true
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-09 11:55:19 +00:00
icondata.workspace = true
2024-12-08 20:53:36 +00:00
tower-http = { version = "0.6.2", features = ["full"] }
2024-12-09 11:55:19 +00:00
tailwind_fuse.workspace = true