GitHunt
JG

jgaffuri/rust_sandbox

Rust sandbox

Some rust tests. Or rest tusts.

Doc

Base commands

rustup doc

cargo new hello_world
cargo new my_lib --lib
cargo check
cargo build
cargo run
cargo build --release

update all dependencies:
cargo update

cargo test
cargo test --help

generate and open documentation of the project and its dependencies:
cargo doc --open
Doc with /// and //!

publish on crate.io
cargo login
cargo publish
cargo yank --vers 1.0.1
cargo yank --vers 1.0.1 --undo

install binary crates locally:
cargo install

Crates

crate roots:
src/main.rs
src/lib.rs

src/bin/x.rs

https://crates.io/

Graph

Conventions

https://rust-lang.github.io/api-guidelines/

Geo Rust

https://georust.org/
https://rust-gdal-cookbook.dend.ro/2_geometry

Languages

Rust100.0%

Contributors

Created February 11, 2025
Updated September 2, 2025
jgaffuri/rust_sandbox | GitHunt