Hacker News new | ask | show | jobs
by pauldino 2537 days ago
The cargo.toml file gives it away as a Rust project, so install Rust then

> cargo build

to just compile, or

> cargo run

to compile & run

1 comments

> cargo build --release

Otherwise you'd be compiling it in debug mode (which is really slow for most projects).