dagger-rs/crates/dagger-codegen
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
..
src feat(sdk,core): Use async runtime instead of blocking. 2023-02-19 21:47:40 +01:00
Cargo.lock with scalars 2023-01-29 13:29:11 +01:00
Cargo.toml Release dagger-sdk v0.2.5, dagger-codegen v0.2.4 2023-02-19 18:00:27 +01:00
CHANGELOG.md Release dagger-sdk v0.2.5, dagger-codegen v0.2.4 2023-02-19 18:00:27 +01:00
LICENSE.MIT with readme and license 2023-02-17 18:12:02 +01:00
README.md with readme and license 2023-02-17 18:12:02 +01:00