#scsys #primitive #utilities #toolkit

no-std scsys-utils

scsys is a collection of primitives and utilities for use throughout the ecosystem

1 unstable release

0.2.3 Sep 22, 2024

#2273 in Rust patterns

Download history 106/week @ 2024-09-16 122/week @ 2024-09-23 51/week @ 2024-09-30 45/week @ 2024-10-07 74/week @ 2024-10-14 35/week @ 2024-10-21

225 downloads per month
Used in 9 crates (via scsys)

Apache-2.0

10KB
119 lines

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

~0.7–1.8MB
~36K SLoC