crane/examples
dependabot[bot] 6591e80137
chore(deps): bump zerocopy from 0.7.26 to 0.7.31 in /examples/sqlx (#483)
Bumps [zerocopy](https://github.com/google/zerocopy) from 0.7.26 to 0.7.31.
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](https://github.com/google/zerocopy/compare/v0.7.26...v0.7.31)

---
updated-dependencies:
- dependency-name: zerocopy
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-15 20:40:45 -08:00
..
alt-registry examples: avoid re-instantiating nixpkgs where possible (#460) 2023-11-26 18:37:43 +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: update all examples with strictDeps = true; (#430) 2023-10-15 22:25:34 +00:00
cross-windows examples: avoid re-instantiating nixpkgs where possible (#460) 2023-11-26 18:37:43 +00:00
custom-toolchain chore: update all examples with strictDeps = true; (#430) 2023-10-15 22:25:34 +00:00
end-to-end-testing examples: avoid re-instantiating nixpkgs where possible (#460) 2023-11-26 18:37:43 +00:00
quick-start examples: avoid re-instantiating nixpkgs where possible (#460) 2023-11-26 18:37:43 +00:00
quick-start-simple examples: avoid re-instantiating nixpkgs where possible (#460) 2023-11-26 18:37:43 +00:00
sqlx chore(deps): bump zerocopy from 0.7.26 to 0.7.31 in /examples/sqlx (#483) 2023-12-15 20:40:45 -08:00
trunk chore: clean up some dead code warnings (#449) 2023-11-05 18:42:08 +00:00
trunk-workspace chore: clean up some dead code warnings (#449) 2023-11-05 18:42:08 +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