edgedb-rust
edgedb-rust copied to clipboard
The official Rust binding for EdgeDB
Tweak to publish script: we can actually use `cargo info crate@version` and test the return value now.
Experiment to add low-level optimization to streams based on stream type. Not complete yet. This may be able to improve throughput for bulk restore operations.
Discussed offline. We should implement two environment variables that will redirect the FS access for two parts of the gel-rust driver (and eventually, the other drivers as well). This will...
This should work: ```rust #[tokio::test] async fn tuples() -> anyhow::Result { let client = Client::new(&SERVER.config); client.ensure_connected().await?; let res: Value = client .query_required_single("select (42, 3)", &()) .await .unwrap(); let Value::Tuple(res) =...
In order to provide atomic updates of DB schemas + applications (preventing out-of-sync db/app updates), it would be very nice to have a feature to embed the migrations into the...
Building on #511, removes v1 of the protocol as well.
This code was extracted from the gel project. I don't know where it will live yet but it's been deleted in the main project and it'll live temporarily here.
It's quite exciting to see all of the progress being made on `gel-rust`. One feature that I'd like to use more often is the `Queryable` derive macro, but I'm running...