2023-08-11 16:54:13 +02:00
|
|
|
[workspace]
|
2023-08-12 20:07:36 +02:00
|
|
|
members = ["crates/*", "examples/*", "ci"]
|
2023-08-11 17:00:19 +02:00
|
|
|
resolver = "2"
|
|
|
|
|
2023-08-12 21:36:50 +02:00
|
|
|
[workspace.package]
|
2023-08-12 21:37:22 +02:00
|
|
|
version = "0.2.0"
|
2023-08-12 21:36:50 +02:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
authors = ["kjuulh <contact@kjuulh.io>"]
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://git.front.kjuulh.io/kjuulh/dagger-components"
|
|
|
|
|
2023-08-11 17:00:19 +02:00
|
|
|
[workspace.dependencies]
|
2023-08-12 20:07:36 +02:00
|
|
|
cuddle-components = { path = "crates/cuddle-components" }
|
|
|
|
dagger-components = { path = "crates/dagger-components" }
|
|
|
|
dagger-cuddle-please = { path = "crates/dagger-cuddle-please" }
|
|
|
|
dagger-rust = { path = "crates/dagger-rust" }
|
|
|
|
ci = { path = "ci" }
|
2023-08-11 17:05:05 +02:00
|
|
|
|
2024-08-01 22:53:04 +02:00
|
|
|
dagger-sdk = "0.11.10"
|
2024-05-26 15:49:41 +02:00
|
|
|
eyre = "0.6"
|
|
|
|
tokio = "1"
|
2023-08-12 20:07:36 +02:00
|
|
|
dotenv = "0.15.0"
|
2024-05-26 15:49:41 +02:00
|
|
|
async-trait = "0.1"
|
2023-11-25 21:41:17 +01:00
|
|
|
color-eyre = "*"
|
2024-05-26 15:49:41 +02:00
|
|
|
clap = { version = "4", features = ["derive"] }
|
|
|
|
futures = "0.3"
|
2024-01-29 00:31:42 +01:00
|
|
|
async-scoped = { version = "0.9.0", features = ["tokio", "use-tokio"] }
|
2024-01-28 20:44:12 +01:00
|
|
|
serde_json = { version = "1" }
|
2024-05-26 15:49:41 +02:00
|
|
|
serde_yaml = { version = "0.9" }
|
|
|
|
serde = { version = "1", features = ["derive"] }
|