File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 11# redis_graph
22
3- [ ![ crates.io] ( https://img.shields.io/badge/crates.io-v0.4.3 -orange )] ( https://crates.io/crates/redis_graph )
3+ [ ![ crates.io] ( https://img.shields.io/badge/crates.io-v0.4.4 -orange )] ( https://crates.io/crates/redis_graph )
44![ Continuous integration] ( https://github.com/tompro/redis_graph/workflows/Continuous%20integration/badge.svg )
55
66redis-graph provides a small trait with an extension function for the
@@ -13,7 +13,7 @@ configuration and clean-up which starting from v0.4.0 are also supported.
1313The Graph commands are available in synchronous and asynchronous versions.
1414
1515The crate is called ` redis-graph ` and you can depend on it via cargo. You will
16- also need redis in your dependencies. This version was tested against redis 0.21 .0
16+ also need redis in your dependencies. This version was tested against redis 0.23 .0
1717but should run with versions higher than that.
1818
1919``` ini
Original file line number Diff line number Diff line change 33//! data types that can be installed as a [redis module](https://oss.redislabs.com/redisgraph).
44//!Redis graph operations are mostly using two top level Redis commands
55//!(one for read/write operations and one for read-only operations). In addition
6- //!to those there are some more maintenance oriented commands for perfomance, configuration and
6+ //!to those there are some more maintenance oriented commands for perfomance, configuration and
77//!clean-up which starting from v0.4.0 are also supported.
88//!The Graph commands are available in synchronous and asynchronous versions.
99//!
1010//!The crate is called `redis-graph` and you can depend on it via cargo. You will
11- //!also need redis in your dependencies. This version was tested against redis 0.22.1
11+ //!also need redis in your dependencies. This version was tested against redis 0.23.0
1212//!but should run with versions higher than that.
1313//!
1414//! ```ini
1515//! [dependencies]
16- //! redis = "0.22.1 "
17- //! redis-graph = "0.4.3 "
16+ //! redis = "0.23.0 "
17+ //! redis-graph = "0.4.4 "
1818//! ```
1919//!
2020//! Or via git:
3131//! ```ini
3232//! [dependencies]
3333//! redis = "0.22.1"
34- //! redis-graph = { version = "0.4.3 ", features = ['tokio-comp'] }
34+ //! redis-graph = { version = "0.4.4 ", features = ['tokio-comp'] }
3535//! ```
3636//!
3737//! # Synchronous usage
4242//! To also have access to the value extractor traits simply import
4343//! the whole crate redis_graph::*.
4444//!
45- //!
45+ //!
4646//! ```rust,no_run
4747//! # fn run() -> redis::RedisResult<()> {
4848//! use redis::Commands;
You can’t perform that action at this time.
0 commit comments