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

31 lines
738 B
TOML
Raw Normal View History

2023-01-29 11:38:13 +01:00
[package]
name = "dagger-sdk"
2023-04-25 08:47:08 +02:00
version = "0.2.21"
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]
2023-04-25 08:46:58 +02:00
dagger-core = { workspace = true, version = "0.2.10" }
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
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"