crane/examples
2024-04-21 22:23:03 +00:00
..
alt-registry chore: bump Cargo.locks (#579) 2024-04-05 20:21:41 +00:00
build-std chore: update all examples with strictDeps = true; (#430) 2023-10-15 22:25:34 +00:00
cross-musl chore: update all examples with strictDeps = true; (#430) 2023-10-15 22:25:34 +00:00
cross-rust-overlay chore: bump Cargo.locks (#579) 2024-04-05 20:21:41 +00:00
cross-windows examples/cross-windows: fix issues related to openssl and libring (#588) 2024-04-21 03:06:32 +00:00
custom-toolchain chore: update all examples with strictDeps = true; (#430) 2023-10-15 22:25:34 +00:00
end-to-end-testing chore: bump Cargo.locks (#579) 2024-04-05 20:21:41 +00:00
quick-start Fix typo (#552) 2024-03-19 03:33:53 +00:00
quick-start-simple examples: avoid re-instantiating nixpkgs where possible (#460) 2023-11-26 18:37:43 +00:00
quick-start-workspace Add workspace example (#597) 2024-04-21 22:23:03 +00:00
sqlx chore(deps): bump whoami from 1.4.1 to 1.5.1 in /examples/sqlx (#578) 2024-04-05 12:06:19 -07:00
trunk chore: replace overrideScope' with overrideScope (#517) 2024-02-08 03:38:28 +00:00
trunk-workspace chore(deps): bump mio from 0.8.10 to 0.8.11 in /examples/trunk-workspace (#541) 2024-03-05 03:30:31 +00:00
.gitignore ci: only build uncached derivations (#426) 2023-10-15 20:07:14 +00:00
README.md Add example of E2E testing (#368) 2023-10-12 18:59:36 -07: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
  • build-std: build a cargo project which requires building the standard library and other crates distributed with the Rust toolchain
  • cross-musl: build a cargo project with musl to crate statically linked binaries
  • cross-rust-overlay: cross compile a rust project using rust-overlay
  • cross-windows: cross compile a rust project for windows
  • 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
  • end-to-end-testing: run end-to-end tests for a webapp