| Crates.io | gornilo |
| lib.rs | gornilo |
| version | 0.3.0 |
| created_at | 2025-03-29 22:34:45.254612+00 |
| updated_at | 2025-04-25 18:52:23.25975+00 |
| description | Odin project manager |
| homepage | https://github.com/IrvingWash/gornilo |
| repository | https://github.com/IrvingWash/gornilo.git |
| max_upload_size | |
| id | 1611796 |
| size | 33,193 |
cargo install gornilo
gornilo new my_project --no-git --no-ols --no-mem-tracking --no-workflows
gornilo build --release
gornilo run --release
gornilo run --release --example my_example
gornilo clean
gornilo test ./tests --all-packages
GORNILO has a configuration file gornilo.toml which is created in the project's root.
Available options:
[project]
name = "my_project"
[vet_flags]
warnings_as_errors = true
unused_variables = true
unused_imports = true
tabs = true
style = true
semicolon = true
cast = true
[collections]
my_collection = "./my_collection"
[testing]
source_path = "tests"
all_packages = true
Examples should have the following structure:
my_project
βββ examples
β βββ my_example
β βββ src
β βββ main.odin
odin build's output formattingI wanted to implement GORNILO in Odin, but Odin's standard library has a very poor support for executing command line commands.