diff --git a/Cargo.toml b/Cargo.toml index 9ead967..734483f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "micro_types" -version = "0.2.3" +version = "0.3.0" edition = "2021" readme = "README.md" license-file = "LICENSE.md" diff --git a/README.md b/README.md index d5e8a1c..e882c02 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ This crate provides a set of types, which are backed by a server, and can be use ## Example ```rust -use dtypes::redis::DString as String; +use dtypes::redis::types::DString as String; let client = redis::Client::open("redis://localhost/").unwrap(); let mut s1 = String::with_value("Hello".to_string(), "s1", client.clone());