cuddle-v2/cuddle/Cargo.toml

43 lines
1.3 KiB
TOML
Raw Normal View History

2022-08-09 13:23:30 +02:00
[package]
name = "cuddle"
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"
publish = true
version = "0.2.0"
2022-08-09 13:23:30 +02:00
edition = "2021"
[[bin]]
name = "cuddle"
path = "src/main.rs"
2022-08-09 13:23:30 +02:00
[dependencies]
anyhow = { version = "1.0.79", features = ["backtrace"] }
serde = { version = "1.0.195", features = ["derive"] }
2024-01-02 08:39:44 +01:00
serde_yaml = "0.9.30"
walkdir = "2.4.0"
git2 = { version = "0.18.1", default-features = false, features = [
"vendored-libgit2",
"vendored-openssl",
"ssh",
] }
clap = { version = "4.4.14", features = ["env", "string"] }
2022-08-10 16:46:56 +02:00
envconfig = "0.10.0"
dirs = "5.0.1"
tracing = "0.1.40"
2023-11-13 18:38:32 +01:00
tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] }
log = { version = "0.4.20", features = ["std", "kv_unstable"] }
tera = "1.19.1"
openssl = { version = "0.10.62", features = ["vendored"] }
libz-sys = { version = "1.1.14", default-features = false, features = [
"libc",
"static",
] }
inquire = { version = "0.6.2", features = ["console"] }
2023-12-28 19:23:54 +01:00
tempfile = { version = "3.9.0" }
serde_json = "1.0.111"
2023-07-27 16:07:01 +02:00
rlua = "0.19.7"
rlua-searcher = "0.1.0"
dotenv = { version = "0.15.0", features = ["clap"] }