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

31 lines
877 B
TOML
Raw Normal View History

2023-01-29 20:14:52 +01:00
[package]
name = "dagger-core"
version = "0.2.8"
2023-01-29 20:14:52 +01:00
edition = "2021"
2023-02-17 18:12:02 +01:00
readme = "README.md"
license-file = "LICENSE.MIT"
description = "dagger sdk core library"
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 20:14:52 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
eyre = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
2023-03-14 23:09:52 +01:00
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
2023-02-05 22:26:58 +01:00
dirs = "4.0.0"
flate2 = { version = "1.0.25", features = ["zlib"] }
graphql-introspection-query = "0.2.0"
2023-02-20 10:40:53 +01:00
graphql_client = { version = "0.12.0", features = ["reqwest"] }
2023-02-05 22:26:58 +01:00
hex = "0.4.3"
hex-literal = "0.3.4"
platform-info = "1.0.2"
2023-02-20 10:40:53 +01:00
reqwest = { version = "0.11.14", features = ["stream", "deflate"] }
2023-02-05 22:26:58 +01:00
sha2 = "0.10.6"
tar = "0.4.38"
tempfile = "3.3.0"