mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-11-08 11:01:47 +01:00
docs(sdk): fix missing await in connect
This commit is contained in:
parent
4381af0295
commit
0b07e3bbe9
@ -27,7 +27,7 @@ cargo add dagger-sdk
|
|||||||
```rust
|
```rust
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
async fn main() -> eyre::Result<()> {
|
async fn main() -> eyre::Result<()> {
|
||||||
let client = dagger_sdk::connect()?;
|
let client = dagger_sdk::connect().await?;
|
||||||
|
|
||||||
let version = client
|
let version = client
|
||||||
.container()
|
.container()
|
||||||
@ -46,9 +46,3 @@ And run it like a normal application:
|
|||||||
```bash
|
```bash
|
||||||
cargo run
|
cargo run
|
||||||
```
|
```
|
||||||
|
|
||||||
### Disclaimer
|
|
||||||
|
|
||||||
You are free to use something else than `tokio`, I haven't tested it with
|
|
||||||
anything else, but it should work with any other runtime. We don't rely on it
|
|
||||||
specifically. That might change in the future though.
|
|
||||||
|
Loading…
Reference in New Issue
Block a user