crane/examples
Ivan Petkov 8de515289f
cargoClippy: add --all-targets to default cargoClippyExtraArgs (#67)
* This allows callers to opt-out of using `--all-targets` without having
  to override the entire cargo command itself
2022-08-11 23:58:32 +00:00
..
alt-registry Update all flake attributes to follow the new .default format 2022-06-01 17:09:29 -07:00
cross-musl Add .overrideToolchain convenience method 2022-06-26 11:25:40 -07:00
cross-rust-overlay Skip aarch64-darwin evaluation for cross-rust-overlay example 2022-06-26 11:38:08 -07:00
custom-toolchain Add .overrideToolchain convenience method 2022-06-26 11:25:40 -07:00
quick-start cargoClippy: add --all-targets to default cargoClippyExtraArgs (#67) 2022-08-11 23:58:32 +00:00
quick-start-simple Update all flake attributes to follow the new .default format 2022-06-01 17:09:29 -07:00
README.md Add cross compilation example for static binaries using musl 2022-02-16 20:51:57 -08:00

Examples

This directory contains several different ways of configuring a project:

  • alt-registry: build a cargo project which uses another crate registry besides crates.io
  • cross-musl: build a cargo project with musl to crate statically linked binaries
  • cross-rust-overlay: cross compile a rust project using rust-overlay
  • custom-toolchain: build a cargo project with a custom toolchain (e.g. WASM builds)
  • quick-start: build a cargo project with a comprehensive test suite
  • quick-start-simple: build a cargo project without extra tests