2022-08-09 13:23:30 +02:00
|
|
|
[package]
|
|
|
|
name = "cuddle_cli"
|
2023-08-02 12:35:36 +02:00
|
|
|
description = "cuddle is a shuttle inspired script and configuration management tool. It enables sharing of workflows on developers workstations and ci"
|
2023-08-02 12:35:53 +02:00
|
|
|
repository = "https://git.front.kjuulh.io/kjuulh/cuddle"
|
2023-08-02 12:35:36 +02:00
|
|
|
readme = "../README.md"
|
|
|
|
license-file = "../LICENSE"
|
|
|
|
publishable = true
|
2022-08-09 13:23:30 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2023-06-09 22:03:32 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "cuddle"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2022-08-09 13:23:30 +02:00
|
|
|
[dependencies]
|
2023-07-27 16:07:01 +02:00
|
|
|
anyhow = { version = "1.0.72", features = ["backtrace"] }
|
2023-08-07 06:18:13 +02:00
|
|
|
serde = { version = "1.0.183", features = ["derive"] }
|
2023-07-27 16:07:01 +02:00
|
|
|
serde_yaml = "0.9.25"
|
|
|
|
walkdir = "2.3.3"
|
2023-06-17 03:38:48 +02:00
|
|
|
git2 = { version = "0.17.2", default-features = false, features = [
|
|
|
|
"vendored-libgit2",
|
|
|
|
"vendored-openssl",
|
2023-06-25 20:40:12 +02:00
|
|
|
"ssh",
|
2023-06-17 03:38:48 +02:00
|
|
|
] }
|
2023-08-08 04:22:57 +02:00
|
|
|
clap = { version = "4.3.21", features = ["env", "string"] }
|
2022-08-10 16:46:56 +02:00
|
|
|
envconfig = "0.10.0"
|
2023-06-17 03:38:48 +02:00
|
|
|
dirs = "5.0.1"
|
2023-07-27 16:07:01 +02:00
|
|
|
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"
|
2023-08-06 15:44:49 +02:00
|
|
|
openssl = { version = "0.10.56", features = ["vendored"] }
|
2023-07-27 16:07:01 +02:00
|
|
|
libz-sys = { version = "1.1.12", default-features = false, features = [
|
2023-06-17 03:38:48 +02:00
|
|
|
"libc",
|
|
|
|
"static",
|
|
|
|
] }
|
|
|
|
inquire = { version = "0.6.2", features = ["console"] }
|
2023-08-07 00:09:19 +02:00
|
|
|
tempfile = { version = "3.7.1" }
|
2023-07-27 16:07:01 +02:00
|
|
|
serde_json = "1.0.104"
|
|
|
|
rlua = "0.19.7"
|
2023-08-02 12:49:25 +02:00
|
|
|
rlua-searcher = "0.1.0"
|
2023-07-27 15:04:46 +02:00
|
|
|
dotenv = { version = "0.15.0", features = ["clap"] }
|