micro_types

Crates.iomicro_types
lib.rsmicro_types
version0.3.0
sourcesrc
created_at2023-09-13 16:27:29.226687
updated_at2024-05-03 21:14:15.559372
descriptionTypes for distributed systems
homepagehttps://github.com/rust-micro/types
repositoryhttps://github.com/rust-micro/types
max_upload_size
id971652
size90,563
Peter Heiss (Heiss)

documentation

https://docs.rs/micro_types

README

micro_types

Rust crates.io


Repobeats analytics image


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.

Commit count: 38

cargo fmt