Skip to content

dgunay/rpg-dice-rust

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rust

RPG Dice Rust

I used a command line dice roller as a way of learning how Perl's package ecosystem worked, so I figured I'd do it again as a modest Rust project.

It uses Regex, SmallRng, and Evalexpr to do dice rolling. Due to the use of Evalexpr, it might also support more than I had intended initially (just integer math).

Testing

Run tests:

cargo test

Fuzzing

Uses cargo fuzz. Requires a nightly compiler.

See fuzzing targets:

cargo fuzz list

Run a fuzzing target:

rustup run nightly cargo fuzz run <target>

Building for Android/Termux

You can cross-compile the project to run on Termux. Download the Android Native Development Kit (NDK) and the appropriate Rust target, and run the command like this:

$ env CARGO_TARGET_AARCH64_LINUX_ANDROID_LINKER=/path/to/ndk/android-ndk-r21/toolc
hains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android29-clang cargo build --target aarch64-linux-android

That example is for my phone (Galaxy Note 8), you may need a different Clang toolchain and target depending on your phone's CPU architecture.

About

A command line RPG dice roller, but in Rust

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages