#standard #simple #useful #rusl

bin+lib rsrusl

A really simple useful library ported to Rust

3 releases

new 0.1.3 Feb 17, 2025
0.1.2 Feb 16, 2025
0.1.0 Feb 16, 2025

#539 in Text processing

Download history 195/week @ 2025-02-12

195 downloads per month

GPL-3.0 license

19KB
212 lines

This is the Rust/Cargo implementation of Rusl.

  • I am aware that there is an existing rusl package on cargo. This is not the rusl package from here. Because of this I have renamed the rust version to rsrusl.

You can see the crates.io/cargo package here.

How to use:

  1. Make a Rust project with Cargo with: cargo new projectName and cd projectName.
  2. Add rusl to the project using: cargo add rsrusl
  3. Use rusl in your project like:
use rsrusl;

fn main() {
    // Use our rusl library functions

    rsrusl::hw();
    let input = rsrusl::i::userinput("Enter your name: ");
    rsrusl::g(&input);
}

Dependencies

~2–11MB
~134K SLoC