crane/examples
Ivan Petkov 8261aaeb8f quick-start: update to conditionally enable cargo-tarpaulin
* Seems like cargo-tarpaulin only officially supports x86_64 systems,
  and more recent versions are marked as broken on other systems in
  nixpkgs
2022-05-21 20:32:10 -07:00
..
alt-registry cargo: bump all deps 2022-04-27 20:15:27 -07:00
cross-musl Update examples to use {app,package}.default pattern 2022-04-27 19:23:30 -07:00
cross-rust-overlay cargo: bump all deps 2022-04-27 20:15:27 -07:00
custom-toolchain Update examples to use {app,package}.default pattern 2022-04-27 19:23:30 -07:00
quick-start quick-start: update to conditionally enable cargo-tarpaulin 2022-05-21 20:32:10 -07:00
quick-start-simple Update examples to use {app,package}.default pattern 2022-04-27 19:23:30 -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