mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-11-08 19:11:47 +01:00
kjuulh
66ab2f552c
The thiserror crate has been added to the dependencies in the Cargo.toml file. This crate is used to derive custom error types with automatic source location.
27 lines
774 B
TOML
27 lines
774 B
TOML
[workspace]
|
|
members = [
|
|
"crates/dagger-codegen",
|
|
"crates/dagger-sdk",
|
|
"crates/dagger-core",
|
|
"crates/dagger-bootstrap",
|
|
"ci",
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
dagger-codegen = { path = "crates/dagger-codegen", version = "^0.2.5" }
|
|
dagger-core = { path = "crates/dagger-core", version = "^0.2.10" }
|
|
dagger-bootstrap = { path = "crates/dagger-bootstrap", version = "^0.2.10" }
|
|
dagger-sdk = { path = "crates/dagger-sdk", version = "^0.2.19" }
|
|
|
|
eyre = "0.6.8"
|
|
color-eyre = "0.6.2"
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
|
serde_json = "1.0.93"
|
|
tokio = { version = "1.25.0", features = ["full"] }
|
|
tracing = { version = "0.1.37", features = ["log"] }
|
|
tracing-subscriber = { version = "0.3.16", features = [
|
|
"tracing-log",
|
|
"tracing",
|
|
] }
|
|
thiserror = "1.0.40"
|