29 lines
650 B
TOML
29 lines
650 B
TOML
[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]
|
|
vespid = { workspace = true, features = ["icons"] }
|
|
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"
|
|
git2 = "0.19.0"
|
|
icondata = { version = "0.5", default-features = false, features = ["lucide"] }
|
|
tower-http = { version = "0.6.2", features = ["full"] }
|