2023-11-25 21:41:17 +01:00
|
|
|
[package]
|
|
|
|
name = "cuddle-ci"
|
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
readme.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-11-26 22:19:34 +01:00
|
|
|
dagger-rust.workspace = true
|
2023-12-29 19:43:04 +01:00
|
|
|
dagger-cuddle-please.workspace = true
|
2023-11-26 22:19:34 +01:00
|
|
|
|
2023-11-25 21:41:17 +01:00
|
|
|
dagger-sdk.workspace = true
|
|
|
|
eyre.workspace = true
|
|
|
|
clap.workspace = true
|
|
|
|
async-trait.workspace = true
|
2023-11-25 23:09:49 +01:00
|
|
|
futures.workspace = true
|
2023-11-27 19:14:31 +01:00
|
|
|
tokio.workspace = true
|
2024-01-28 20:44:12 +01:00
|
|
|
serde_json.workspace = true
|
|
|
|
serde_yaml.workspace = true
|
|
|
|
serde.workspace = true
|
2024-01-28 21:49:52 +01:00
|
|
|
tracing = {version = "0.1.40", features = ["log"]}
|
2024-04-15 12:15:17 +02:00
|
|
|
chrono = {version = "0.4.38"}
|
2024-03-30 22:33:25 +01:00
|
|
|
toml = "0.8.12"
|
2023-11-25 21:41:17 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-04-05 22:45:25 +02:00
|
|
|
pretty_assertions = "1.4.0"
|
2023-11-25 21:41:17 +01:00
|
|
|
tokio.workspace = true
|
2024-04-05 22:45:25 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
dagger = []
|
|
|
|
integration = []
|