redisgraph 0.4.0

A Rust client for RedisGraph.
Documentation
1
2
3
4
5
6
7
.PHONY: tests
.ONESHELL: tests

tests:
	docker run --name redisgraph-rs-tests -d --rm -p 6379:6379 redislabs/redisgraph \
		&& cargo test
	docker stop redisgraph-rs-tests