Skip to content

Commit 1c67498

Browse files
committedOct 18, 2014
Updated docs slightly and exported function previously missing.
1 parent 21e63fa commit 1c67498

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed
 

‎src/redis/lib.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
//! a general purpose interface to Redis and also provides specific helpers for
33
//! commonly used functionality.
44
//!
5+
//! The crate is called `redis` and you can depend on it via cargo:
6+
//!
7+
//! ```ini
8+
//! [dependencies.redis]
9+
//! git = "https://github.com/mitsuhiko/redis-rs.git"
10+
//! ```
11+
//!
512
//! # Basic Operation
613
//!
714
//! redis-rs exposes to API levels: a low- and a high-level part. The high-level
@@ -257,7 +264,8 @@ pub use parser::{parse_redis_value, Parser};
257264
pub use client::Client;
258265
pub use script::{Script, ScriptInvocation};
259266
pub use connection::{Connection, ConnectionLike, ConnectionInfo,
260-
IntoConnectionInfo, PubSub, Msg, transaction};
267+
IntoConnectionInfo, PubSub, Msg, transaction,
268+
parse_redis_url};
261269
pub use cmd::{cmd, Cmd, pipe, Pipeline, Iter, pack_command};
262270
pub use commands::{
263271
Commands,

0 commit comments

Comments
 (0)