mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-11-08 19:11:47 +01:00
32 lines
846 B
TOML
32 lines
846 B
TOML
[package]
|
|
name = "dagger-core"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
readme = "README.md"
|
|
license-file = "LICENSE.MIT"
|
|
description = "dagger sdk core library"
|
|
repository = "https://github.com/kjuulh/dagger-rs"
|
|
publish = true
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = "4.1.4"
|
|
dirs = "4.0.0"
|
|
eyre = "0.6.8"
|
|
flate2 = { version = "1.0.25", features = ["zlib"] }
|
|
genco = "0.17.3"
|
|
graphql-introspection-query = "0.2.0"
|
|
graphql_client = { version = "0.12.0", features = [
|
|
"reqwest",
|
|
"reqwest-blocking",
|
|
] }
|
|
hex = "0.4.3"
|
|
hex-literal = "0.3.4"
|
|
platform-info = "1.0.2"
|
|
reqwest = { version = "0.11.14", features = ["stream", "blocking", "deflate"] }
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
|
serde_json = "1.0.91"
|
|
sha2 = "0.10.6"
|
|
tar = "0.4.38"
|
|
tempfile = "3.3.0"
|