dagger-rs/crates/dagger-sdk/examples/build-the-application
kjuulh 9be6f435d9 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?;

  // ...
}
```
2023-02-19 21:47:40 +01:00
..
app build the application 2023-02-17 15:47:12 +01:00
main.rs feat(sdk,core): Use async runtime instead of blocking. 2023-02-19 21:47:40 +01:00