Crates.io | scsys-actors |
lib.rs | scsys-actors |
version | 0.2.3 |
source | src |
created_at | 2022-11-29 02:55:53.274677 |
updated_at | 2024-09-22 17:40:32.445733 |
description | scsys is a collection of primitives and utilities for use throughout the ecosystem. |
homepage | https://github.com/scattered-systems/scsys/wiki |
repository | https://github.com/scattered-systems/scsys.git |
max_upload_size | |
id | 724990 |
size | 16,222 |
Warning: the library is currently in development so be prepared for major modifications to the API!
Welcome to scsys
, a collection of useful utilities, types, and other primitives that are used in various projects developed by Scattered Systems. The library is designed to be a general-purpose utility library that can be used in any Rust project, aiming to provide a standardized set of tools that can be used to build robust and reliable software.
Make sure you have the latest version of the Rust toolchain installed on your system.
rustup update
git clone https://github.com/scattered-systems/scsys.git
then, navigate to the project directory
cd scsys
cargo build --all-features -v --workspace
Automatically format and analyze the codebase before building then testing.
cargo test --all-features -r -v --workspace
[dependencies.scsys]
features = ["full"]
version = "0.2.*"
Message
typeuse scsys::prelude::*;
fn main() {
println!("{:?}", Message::<String>::default());
}
Licensed under the Apache License, Version 2.0, (LICENSE-APACHE)
Contributions are welcome, however, ensure that you have read the CONTRIBUTING.md file before submitting a pull request.