2022-08-09 13:23:30 +02:00
|
|
|
[package]
|
2023-08-12 21:41:00 +02:00
|
|
|
name = "cuddle"
|
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"
|
2023-08-12 21:41:00 +02:00
|
|
|
publish = true
|
|
|
|
version = "0.2.0"
|
2022-08-09 13:23:30 +02:00
|
|
|
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]
|
2024-01-02 05:56:02 +01:00
|
|
|
anyhow = { version = "1.0.79", features = ["backtrace"] }
|
2024-01-06 03:56:11 +01:00
|
|
|
serde = { version = "1.0.195", features = ["derive"] }
|
2024-01-02 08:39:44 +01:00
|
|
|
serde_yaml = "0.9.30"
|
2023-09-05 16:40:02 +02:00
|
|
|
walkdir = "2.4.0"
|
2023-09-20 23:28:20 +02:00
|
|
|
git2 = { version = "0.18.1", default-features = false, features = [
|
2023-06-17 03:38:48 +02:00
|
|
|
"vendored-libgit2",
|
|
|
|
"vendored-openssl",
|
2023-06-25 20:40:12 +02:00
|
|
|
"ssh",
|
2023-06-17 03:38:48 +02:00
|
|
|
] }
|
2024-01-15 18:10:52 +01:00
|
|
|
clap = { version = "4.4.17", 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-10-19 03:37:43 +02:00
|
|
|
tracing = "0.1.40"
|
2023-11-13 18:38:32 +01:00
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] }
|
2023-08-12 13:30:03 +02:00
|
|
|
log = { version = "0.4.20", features = ["std", "kv_unstable"] }
|
2023-09-03 18:31:01 +02:00
|
|
|
tera = "1.19.1"
|
2023-12-22 14:22:05 +01:00
|
|
|
openssl = { version = "0.10.62", features = ["vendored"] }
|
2024-01-09 09:43:27 +01:00
|
|
|
libz-sys = { version = "1.1.14", default-features = false, features = [
|
2023-06-17 03:38:48 +02:00
|
|
|
"libc",
|
|
|
|
"static",
|
|
|
|
] }
|
|
|
|
inquire = { version = "0.6.2", features = ["console"] }
|
2023-12-28 19:23:54 +01:00
|
|
|
tempfile = { version = "3.9.0" }
|
2024-01-04 08:57:50 +01:00
|
|
|
serde_json = "1.0.111"
|
2023-07-27 16:07:01 +02:00
|
|
|
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"] }
|