feat: add rust cli

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-03-30 00:25:11 +01:00
parent c62178ecbd
commit 70e5aaa107
14 changed files with 2524 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.dependencies]
%%name%% = { path = "crates/%%name%%" }
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"] }
dotenv = { version = "0.15" }
axum = { version = "0.7" }