mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-11-08 19:11:47 +01:00
kjuulh
94336d0637
This will make the api much easier to use, as we can now rely on "" instead of "".into() for normal string values. Introduced builder as well, which makes it much easier to use *Opts, as it can handle the building of that, and get the benefits from String -> &str, as that is currently not allowed for optional values
29 lines
721 B
TOML
29 lines
721 B
TOML
[package]
|
|
name = "dagger-sdk"
|
|
version = "0.2.4"
|
|
edition = "2021"
|
|
readme = "README.md"
|
|
license-file = "LICENSE.MIT"
|
|
description = "A dagger sdk for rust, written in rust"
|
|
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]
|
|
dagger-core = { path = "../dagger-core", version = "^0.2.2" }
|
|
|
|
base64 = "0.21.0"
|
|
eyre = "0.6.8"
|
|
futures = "0.3.26"
|
|
gql_client = "1.0.7"
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
|
serde_json = "1.0.93"
|
|
tokio = { version = "1.25.0", features = ["full"] }
|
|
derive_builder = "0.12.0"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.3.0"
|
|
rand = "0.8.5"
|
|
genco = "0.17.3"
|