feat: with init command

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-06-17 03:38:48 +02:00
parent 91ee9d4387
commit 6c5fed87b1
13 changed files with 1914 additions and 310 deletions

View File

@@ -15,12 +15,22 @@ anyhow = "1.0.60"
serde = { version = "1.0.143", features = ["derive"] }
serde_yaml = "0.9.4"
walkdir = "2.3.2"
git2 = { version = "0.15.0", features = ["ssh"] }
clap = "3.2.16"
git2 = { version = "0.17.2", default-features = false, features = [
"vendored-libgit2",
"vendored-openssl",
] }
clap = { version = "4.3.4", features = ["env", "string"] }
envconfig = "0.10.0"
dirs = "4.0.0"
dirs = "5.0.1"
tracing = "0.1.36"
tracing-subscriber = { version = "0.3.15", features = ["json"] }
log = { version = "0.4.17", features = ["std", "kv_unstable"] }
openssl = { version = "0.10", features = ["vendored"] }
tera = "1.17.0"
openssl = { version = "0.10.54", features = ["vendored"] }
libz-sys = { version = "1.1.9", default-features = false, features = [
"libc",
"static",
] }
inquire = { version = "0.6.2", features = ["console"] }
tempfile = { version = "3.6.0" }
serde_json = "1.0.97"