Crates.io | anagrambot |
lib.rs | anagrambot |
version | 1.0.1 |
source | src |
created_at | 2022-07-26 03:52:58.625108 |
updated_at | 2022-10-22 05:17:45.748081 |
description | A library to find anagrams of words |
homepage | |
repository | https://github.com/generic-user1/anagrambot |
max_upload_size | |
id | 632969 |
size | 1,151,947 |
A library to find anagrams of words
no-default-wordlist
: Do not include the default wordlist when building the project.The anabot
project is a CLI front end for anagrambot
.
This project (anagrambot
) ships with an in-built list of words (henceforth referred to as 'the wordlist').
The wordlist is used as a default list of words when no external list is used, and is stored in the words.txt
file.
The wordlist was extracted from the Ubuntu wamerican package and is redistibuted as a component of this project for maximum compatibility.
The copyright document associated with the wordlist is included verbatim in the WORDLIST-LICENSE
file, and has been appended to the LICENSE
file.
This project can function with a different default wordlist. To achieve this, replace the existing words.txt
with a
new file named words.txt
before building the project. Wordlist files should be UTF-8 encoded, contain one word per line, and ideally should have no duplicates.
This project can also function with no default wordlist. To achieve this, build the project with the no-default-wordlist
feature.
cargo build --features no-default-wordlist