micro_types 0.1.0

Types for distributed systems
Documentation

micro_types

Rust crates.io

This crate provides a set of types, which are backed by a server, and can be used to create a distributed system.

Example

use types::String;

let client = redis::Client::open("redis://localhost/").unwrap();
let mut s1 = TString::with_value("Hello".to_string(), "s1", client.clone());
assert_eq!(s1, "Hello");

Contributing

Setup

Install docker and docker-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.