Crates.io | micro_types |
lib.rs | micro_types |
version | 0.3.0 |
source | src |
created_at | 2023-09-13 16:27:29.226687 |
updated_at | 2024-05-03 21:14:15.559372 |
description | Types for distributed systems |
homepage | https://github.com/rust-micro/types |
repository | https://github.com/rust-micro/types |
max_upload_size | |
id | 971652 |
size | 90,563 |
This crate provides a set of types, which are backed by a server, and can be used to create a distributed system.
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");
Install cargo
(recommended through rustup
), docker
with compose
.
cargo install cargo-make
makers install
makers test
Add your change to the CHANGELOG.md
file.
This project is licensed under the MIT license.