7 unstable releases (3 breaking)
0.3.0 | May 3, 2024 |
---|---|
0.2.3 | Oct 29, 2023 |
0.2.1 | Sep 22, 2023 |
0.1.0 | Sep 13, 2023 |
0.0.0 | Sep 13, 2023 |
#791 in Database interfaces
78KB
1.5K
SLoC
micro_types
This crate provides a set of types, which are backed by a server, and can be used to create a distributed system.
Example
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());
assert_eq!(s1, "Hello");
Contributing
Setup
Install cargo
(recommended through rustup
), docker
with compose
.
cargo install cargo-make
makers install
makers test
Add your change to the CHANGELOG.md
file.
License
This project is licensed under the MIT license.
Dependencies
~2.8–4MB
~91K SLoC