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

30 lines
672 B
TOML
Raw Normal View History

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-02-17 18:13:17 +01:00
repository = "https://github.com/kjuulh/dagger-rs"
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 }
eyre = { workspace = true }
tokio = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
2023-02-19 15:39:10 +01:00
base64 = "0.21.0"
futures = "0.3.27"
2023-02-05 22:26:58 +01:00
gql_client = "1.0.7"
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"