feat: enable a basic app

This commit is contained in:
2025-02-07 21:31:12 +01:00
commit 434f655059
13 changed files with 816 additions and 0 deletions

15
Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.dependencies]
forest = { path = "crates/forest" }
anyhow = { version = "1" }
tokio = { version = "1", features = ["full"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3.18" }
clap = { version = "4", features = ["derive", "env"] }
dotenvy = { version = "0.15" }
serde = { version = "1", features = ["derive"] }
uuid = { version = "1.7", features = ["v4"] }