Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,10 @@ updates:
cooldown:
default-days: 7
semver-major-days: 14
- package-ecosystem: rust-toolchain
directory: /
labels:
- dependencies
- rust-toolchain
schedule:
interval: weekly
9 changes: 9 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -457,3 +457,12 @@ The following tooling is available in this environment:

These practices help maintain a high-quality codebase and facilitate
collaboration.

## Fast development builds

`make dev-build` and `make dev-test` compile with the opt-in Cranelift
backend and the mold linker configured in `tools/dev-fast/config.toml`.
They require a nightly toolchain and, on Linux, a `mold` binary on the
`PATH`. The fragment is passed explicitly with `--config`, so release,
coverage, and verification builds are unaffected; never copy its contents
into `.cargo/config.toml`, which Cargo applies to every build.
3 changes: 3 additions & 0 deletions typos.local.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ stems = []
accepted = []

[words.corrections]
# "mold" names the linker (https://github.com/rui314/mold); it is not a
# misspelling of "mould" in that context.
mold = "mold"

[patterns]
# The tokenizer splits the valid hyphenated prefix in `mis-grouping`.
Expand Down
1 change: 1 addition & 0 deletions typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1502,6 +1502,7 @@ extend-ignore-re = [
"modularizers" = "modularizers"
"modularizes" = "modularizes"
"modularizing" = "modularizing"
"mold" = "mold"
"monetisable" = "monetizable"
"monetisably" = "monetizably"
"monetisation" = "monetization"
Expand Down
Loading