Work in progress asynchronous bindings of EdgeDB for async-std main loop.
Note: development of these bindings are stalled. Use edgedb-tokio instead.
```rust use async_std::task;
fn main() -> anyhow::Result<()> { let val: i64 = task::blockon(async { let pool = edgedbclient::connect().await?; pool.query("SELECT 78", &()).await })?; println!("78 is: {}", val); Ok(()) } ```
More examples on github
Licensed under either of
at your option.