2023-01-29 11:38:13 +01:00
|
|
|
[package]
|
|
|
|
name = "dagger-sdk"
|
2023-03-14 15:00:47 +01:00
|
|
|
version = "0.2.19"
|
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"
|
2023-03-18 15:23:24 +01:00
|
|
|
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-03-14 21:46:04 +01:00
|
|
|
dagger-core = { workspace = true }
|
|
|
|
|
|
|
|
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
|
|
|
|
2023-03-11 17:57:35 +01:00
|
|
|
futures = "0.3.27"
|
2023-02-19 17:21:40 +01:00
|
|
|
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"
|