EdgeDB Rust Binding for Async-Std

Work in progress asynchronous bindings of EdgeDB for async-std main loop.

Note: development of these bindings are stalled. Use edgedb-tokio instead.

Example Usage

```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

License

Licensed under either of

at your option.