38 releases

0.2.3 Sep 22, 2024
0.2.2 May 11, 2024
0.2.1 Apr 28, 2024
0.2.0 Mar 16, 2024
0.1.35 Nov 29, 2022

#28 in #scsys

Download history 35/week @ 2024-07-08 92/week @ 2024-07-15 40/week @ 2024-07-22 44/week @ 2024-07-29 70/week @ 2024-08-05 47/week @ 2024-08-12 47/week @ 2024-08-19 95/week @ 2024-08-26 44/week @ 2024-09-02 35/week @ 2024-09-09 165/week @ 2024-09-16 139/week @ 2024-09-23 75/week @ 2024-09-30 42/week @ 2024-10-07 106/week @ 2024-10-14

474 downloads per month
Used in scsys

Apache-2.0

5KB

scsys

crates.io docs license

clippy rust


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.

Getting Started

Building from the source

Make sure you have the latest version of the Rust toolchain installed on your system.

rustup update

Clone the repository

git clone https://github.com/scattered-systems/scsys.git

then, navigate to the project directory

cd scsys

Building Locally

cargo build --all-features -v --workspace

Testing

Automatically format and analyze the codebase before building then testing.

cargo test --all-features -r -v --workspace

Usage

Add the dependency to your project

[dependencies.scsys]
features = ["full"]
version = "0.2.*"

Examples

Example: Using the Message type
use scsys::prelude::*;

fn main() {
  println!("{:?}", Message::<String>::default());
}

License

Licensed under the Apache License, Version 2.0, (LICENSE-APACHE)

Contribution

Contributions are welcome, however, ensure that you have read the CONTRIBUTING.md file before submitting a pull request.

Dependencies

~1.5MB
~42K SLoC