kjuulh
44e8fe8918
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
43 lines
1.4 KiB
TOML
43 lines
1.4 KiB
TOML
[package]
|
|
name = "cuddle_cli"
|
|
description = "cuddle is a shuttle inspired script and configuration management tool. It enables sharing of workflows on developers workstations and ci"
|
|
repository = "https://git.front.kjuulh.io/kjuulh/cuddle"
|
|
readme = "../README.md"
|
|
license-file = "../LICENSE"
|
|
publishable = true
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "cuddle"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1.0.72", features = ["backtrace"] }
|
|
serde = { version = "1.0.180", features = ["derive"] }
|
|
serde_yaml = "0.9.25"
|
|
walkdir = "2.3.3"
|
|
git2 = { version = "0.17.2", default-features = false, features = [
|
|
"vendored-libgit2",
|
|
"vendored-openssl",
|
|
"ssh",
|
|
] }
|
|
clap = { version = "4.3.19", features = ["env", "string"] }
|
|
envconfig = "0.10.0"
|
|
dirs = "5.0.1"
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = { version = "0.3.17", features = ["json", "env-filter"] }
|
|
log = { version = "0.4.19", features = ["std", "kv_unstable"] }
|
|
tera = "1.19.0"
|
|
openssl = { version = "0.10.55", features = ["vendored"] }
|
|
libz-sys = { version = "1.1.12", default-features = false, features = [
|
|
"libc",
|
|
"static",
|
|
] }
|
|
inquire = { version = "0.6.2", features = ["console"] }
|
|
tempfile = { version = "3.7.0" }
|
|
serde_json = "1.0.104"
|
|
rlua = "0.19.7"
|
|
rlua-searcher = { git = "https://git.front.kjuulh.io/kjuulh/rlua-searcher.git", rev = "2b29a9d0e86ec7f91b31dd844a58168969b7b74b" }
|
|
dotenv = { version = "0.15.0", features = ["clap"] }
|