Moss-rs is an implementation of the MOSS client in pure Rust. Moss-rs currenly exports a library to provide reusable access to it's components, as well as a binary that acts as a client for the Moss service.
Moss is a code similarity analysis tool developed by Alex Aiken, Daniel S. Wilkerson and Saul Schleimer. It is useful as a tool for detecting similarity and possible plagiarism. It is not, in itself, a plagiarism checker as it cannot deterministically ascertain whether or not plagiarism occured.
Moss is provided as an internet service. This project is just an implementation of the reference client, found here.
Installation instructions for moss can be found here
- Rust Compiler. Install using rustup
- Git
- Basic familiarity with your terminal
- clone the repository
git clone https://github.com/ianakotey/moss-rs
- Change directory (cd) into repository directory
cd MOSS-RS # folder name might not be uppercase
- Build moss-rs
cargo build --release
- The binary will be found at project/target/release/moss[.exe], where project is the project directory. It is recommended to copy/move the binary to a location of your choice and add that location to your system's PATH variable. See this article for help if needed.
Most users will be interested in the binary executable. Usage instructions can be found here
More documentation will be provided once the library is ready to publish.
- A GUI desktop application
- Extra features like regex transforms for display names
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Please mark it with the feature label
For bugs, documentation, and any questions, please create an issue with the appropriate label.
Please make sure to update any tests as appropriate.