Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 1.38 KB

README.md

File metadata and controls

18 lines (15 loc) · 1.38 KB

puny2d

Crate Version Crate Documentation Minimal rust version
GitHub Workflow Status Code Coverage Deps.rs dependency status for GitHub repo

puny2d is a 2d graphics software renderer library for programming language rust.

Build

  • Compile: cargo build --release
    • Output: file target/release/libpuny2d.rlib
  • Documentation generation: cargo doc --no-deps
    • Output: directory target/doc (file puny2d/index.html)

Develop

  • Compile check: cargo check
  • Code linting: cargo clippy
  • Code formatting: cargo fmt
  • Unit tests: cargo test
  • Benchmark tests: cargo bench