mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2026-01-10 07:41:01 +01:00
feat(sdk,core): Use async runtime instead of blocking.
Default to using async runtime instead of blocking. I.e.
```rust
fn main() -> eyre::Result<()> {
// ...
client.container().from("rust").publish("somewhere")?;
// ...
}
// to
async fn main() -> eyre::Result<()> {
// ...
client.container().from("rust").publish("somewhere").await?;
// ...
}
```
This commit is contained in: