redisgraph-rs
redisgraph-rs copied to clipboard
A Rust client for RedisGraph.
The latest version in `Cargo.toml` is 0.3.0. The version suggested in `README.md` is 0.1.0 I suggest updating the instructions on `README.md` to match the latest version.
Latest version of the redis crate is 0.22.3. I suggest updating Cargo.toml to use the most recent version.
string formatting causes a cypher query injection exploit vulnerability would it be possible to support query variables? https://xkcd.com/327/
RedisGraph [has supported](https://github.com/RedisGraph/RedisGraph/pull/352) `MULTI/EXEC` to execute queries and mutations atomically for a while. The `redis` crate supports it through the `redis::pipe().atomic()` mode. It'd be nice to have implement pipelining on...