dagger-rs/crates/dagger-sdk/Cargo.toml

32 lines
766 B
TOML
Raw Permalink Normal View History

2023-01-29 11:38:13 +01:00
[package]
name = "dagger-sdk"
version = "0.2.22"
2023-01-29 11:38:13 +01:00
edition = "2021"
readme = "README.md"
license-file = "LICENSE.MIT"
description = "A dagger sdk for rust, written in rust"
repository = "https://github.com/kjuulh/dagger-sdk"
2023-02-17 18:19:31 +01:00
publish = true
2023-01-29 11:38:13 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dagger-core = { workspace = true, version = "^0.2.11" }
eyre = { workspace = true }
tokio = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
2023-03-14 23:09:52 +01:00
tracing.workspace = true
tracing-subscriber.workspace = true
thiserror.workspace = true
2023-02-19 15:39:10 +01:00
futures = "0.3.28"
derive_builder = "0.12.0"
2023-02-17 17:29:23 +01:00
[dev-dependencies]
2023-02-19 15:39:10 +01:00
pretty_assertions = "1.3.0"
2023-02-17 17:29:23 +01:00
rand = "0.8.5"
2023-02-19 15:39:10 +01:00
genco = "0.17.3"
2023-03-14 23:09:52 +01:00
tracing-test = "0.2.4"