| Crates.io | dagger-sdk |
| lib.rs | dagger-sdk |
| version | 0.18.19 |
| created_at | 2023-01-29 10:41:15.059613+00 |
| updated_at | 2025-09-18 13:53:18.428701+00 |
| description | A dagger sdk for rust, written in rust |
| homepage | |
| repository | https://github.com/dagger/dagger |
| max_upload_size | |
| id | 770842 |
| size | 9,512,920 |
A dagger sdk written in rust for rust.
See examples
Run them like so
cargo run --example first-pipeline
The examples match the folder name in each directory in examples
Simply install like:
cargo add dagger-sdk
#[tokio::main]
async fn main() -> eyre::Result<()> {
dagger_sdk::connect(|client| async move {
let version = client
.container()
.from("golang:1.19")
.with_exec(vec!["go", "version"])
.stdout()
.await?;
println!("Hello from Dagger and {}", version.trim());
Ok(())
})
.await?;
}
And run it like a normal application:
cargo run