27 releases
0.13.7 | Oct 31, 2024 |
---|---|
0.9.8 | Feb 1, 2024 |
0.3.2 | Oct 21, 2023 |
0.2.22 | Apr 30, 2023 |
0.2.19 | Mar 14, 2023 |
#238 in Development tools
826 downloads per month
Used in 3 crates
2.5MB
9K
SLoC
dagger-sdk
A dagger sdk written in rust for rust.
Examples
See examples
Run them like so
cargo run --example first-pipeline
The examples match the folder name in each directory in examples
Install
Simply install like:
cargo add dagger-sdk
Usage
#[tokio::main]
async fn main() -> eyre::Result<()> {
let client = dagger_sdk::connect().await?;
let version = client
.container()
.from("golang:1.19")
.with_exec(vec!["go", "version"])
.stdout().await?;
println!("Hello from Dagger and {}", version.trim());
Ok(())
}
And run it like a normal application:
cargo run
Dependencies
~13–26MB
~419K SLoC