feat: update template for cli

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-07-28 21:31:23 +02:00
parent 60b81f10e4
commit 12735aa1c5
5 changed files with 33 additions and 53 deletions

View File

@@ -1,9 +1,9 @@
[workspace]
members = ["crates/service"]
members = ["crates/%%name%%"]
resolver = "2"
[workspace.dependencies]
service = { path = "crates/service" }
%%name%% = { path = "crates/%%name%%" }
anyhow = { version = "1.0.71" }
tokio = { version = "1", features = ["full"] }
@@ -11,4 +11,3 @@ tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3.17" }
clap = { version = "4.3.4", features = ["derive", "env"] }
dotenv = { version = "0.15.0" }
axum = { version = "0.6.18" }