3 releases
new 0.0.3 | Jan 9, 2025 |
---|---|
0.0.2 | Jan 8, 2025 |
0.0.1 | Jan 8, 2025 |
#281 in Math
61 downloads per month
15KB
octad
simple octad puzzle generator (and soon solver)
installation
as of right now, there are no packages provided, the only way to install is to build from source.
octad
is now available as a crate on crates.io!
install cargo
through either your package manager or rustup
, then run cargo install octad --locked
building
- clone the repository:
git clone https://codeberg.org/switchcartridges/octad
- go into the repository and build it with
cargo
:
cargo build --release
omit the --release
option if you want the debug build, however be aware that debug builds are slower
after cargo
is done building, the compiled binary is going to be in target/release/octad
- (optional, only do if youre installing the program this way) add an alias for
octad
adding an alias is simple; add the following line to your.bashrc
or.zshrc
:
alias octad="<repository directory>/target/release/octad"
if you're using NixOS like i am, add the following line to programs.zsh.shellAliases
in either configuration.nix
or home.nix
:
octad = "<repository directory>/target/release/octad";
Dependencies
~315KB