Crates.io | octad |
lib.rs | octad |
version | |
source | src |
created_at | 2025-01-08 20:26:47.603901 |
updated_at | 2025-01-08 20:32:52.03053 |
description | simple octad puzzle generator and solver |
homepage | https://codeberg.org/switchcartridges/octad |
repository | https://codeberg.org/switchcartridges/octad |
max_upload_size | |
id | 1509042 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
simple octad puzzle generator (and soon solver)
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
git clone https://codeberg.org/switchcartridges/octad
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
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";