Commit graph

2072 commits

Author SHA1 Message Date
Ed Page
b34586cef4 docs: Update changelog 2024-06-22 13:12:59 -04:00
Ed Page
ceaed5b649
Merge pull request #1044 from epage/reoccurrence
fix(dict): Don't correct reoccurrence
2024-06-22 12:12:33 -05:00
Ed Page
038802dc09 fix(dict): Don't correct reoccurrence
Fixes #1013
2024-06-22 13:02:06 -04:00
Ed Page
dde47868a5 chore: Release 2024-06-21 14:35:59 -04:00
Ed Page
85d76b5b17 docs: Update changelog 2024-06-21 14:35:35 -04:00
Ed Page
ab67cbb949
Merge pull request #1040 from dyc3/action-support-mac-arm
add support for mac and arm systems to the github action
2024-06-21 13:34:50 -05:00
Ed Page
2a274e149f chore(ci): Auto-update Mac now that latest uses m1 2024-06-21 14:21:41 -04:00
Carson McManus
89fad3115d feat[ci]: add support for mac and arm systems to the github action 2024-06-21 14:10:08 -04:00
renovate[bot]
ff7654294c
chore(deps): Update Rust Stable to v1.79 (#1035)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [STABLE](https://togithub.com/rust-lang/rust) | minor | `1.78` ->
`1.79` |

---

### Release Notes

<details>
<summary>rust-lang/rust (STABLE)</summary>

###
[`v1.79`](https://togithub.com/rust-lang/rust/blob/HEAD/RELEASES.md#Version-1790-2024-06-13)

[Compare
Source](https://togithub.com/rust-lang/rust/compare/1.78.0...1.79.0)

\==========================

<a id="1.79.0-Language"></a>

## Language

- [Stabilize inline `const {}`
expressions.](https://togithub.com/rust-lang/rust/pull/104087/)
- [Prevent opaque types being instantiated twice with different regions
within the same
function.](https://togithub.com/rust-lang/rust/pull/116935/)
- [Stabilize WebAssembly target features that are in phase 4 and
5.](https://togithub.com/rust-lang/rust/pull/117457/)
- [Add the `redundant_lifetimes` lint to detect lifetimes which are
semantically
redundant.](https://togithub.com/rust-lang/rust/pull/118391/)
- [Stabilize the `unnameable_types` lint for public types that can't be
named.](https://togithub.com/rust-lang/rust/pull/120144/)
- [Enable debuginfo in macros, and stabilize `-C
collapse-macro-debuginfo` and
`#[collapse_debuginfo]`.](https://togithub.com/rust-lang/rust/pull/120845/)
- [Propagate temporary lifetime extension into `if` and `match`
expressions.](https://togithub.com/rust-lang/rust/pull/121346/)
- [Restrict promotion of `const fn`
calls.](https://togithub.com/rust-lang/rust/pull/121557/)
- [Warn against refining impls of crate-private traits with
`refining_impl_trait`
lint.](https://togithub.com/rust-lang/rust/pull/121720/)
- [Stabilize associated type bounds (RFC
2289).](https://togithub.com/rust-lang/rust/pull/122055/)
- [Stabilize importing `main` from other modules or
crates.](https://togithub.com/rust-lang/rust/pull/122060/)
- [Check return types of function types for
well-formedness](https://togithub.com/rust-lang/rust/pull/115538)
- [Rework `impl Trait` lifetime
inference](https://togithub.com/rust-lang/rust/pull/116891/)
- [Change inductive trait solver cycles to be
ambiguous](https://togithub.com/rust-lang/rust/pull/122791)

<a id="1.79.0-Compiler"></a>

## Compiler

- [Define `-C strip` to only affect binaries, not artifacts like
`.pdb`.](https://togithub.com/rust-lang/rust/pull/115120/)
- [Stabilize `-Crelro-level` for controlling runtime link
hardening.](https://togithub.com/rust-lang/rust/pull/121694/)
- [Stabilize checking of `cfg` names and values at compile-time with
`--check-cfg`.](https://togithub.com/rust-lang/rust/pull/123501/)
*Note that this only stabilizes the compiler part, the Cargo part is
still unstable in this release.*
- [Add `aarch64-apple-visionos` and `aarch64-apple-visionos-sim` tier 3
targets.](https://togithub.com/rust-lang/rust/pull/121419/)
- [Add `riscv32ima-unknown-none-elf` tier 3
target.](https://togithub.com/rust-lang/rust/pull/122696/)
- [Promote several Windows targets to tier
2](https://togithub.com/rust-lang/rust/pull/121712):
`aarch64-pc-windows-gnullvm`, `i686-pc-windows-gnullvm`, and
`x86_64-pc-windows-gnullvm`.

Refer to Rust's \[platform support page]\[platform-support-doc]
for more information on Rust's tiered platform support.

<a id="1.79.0-Libraries"></a>

## Libraries

- [Implement `FromIterator` for `(impl Default + Extend, impl Default +
Extend)`.](https://togithub.com/rust-lang/rust/pull/107462/)
- [Implement `{Div,Rem}Assign<NonZero<X>>` on
`X`.](https://togithub.com/rust-lang/rust/pull/121952/)
- [Document overrides of `clone_from()` in
core/std.](https://togithub.com/rust-lang/rust/pull/122201/)
- [Link MSVC default lib in
core.](https://togithub.com/rust-lang/rust/pull/122268/)
- [Caution against using `transmute` between pointers and
integers.](https://togithub.com/rust-lang/rust/pull/122379/)
- [Enable frame pointers for the standard
library.](https://togithub.com/rust-lang/rust/pull/122646/)

<a id="1.79.0-Stabilized-APIs"></a>

## Stabilized APIs

-
[`{integer}::unchecked_add`](https://doc.rust-lang.org/stable/core/primitive.i32.html#method.unchecked_add)
-
[`{integer}::unchecked_mul`](https://doc.rust-lang.org/stable/core/primitive.i32.html#method.unchecked_mul)
-
[`{integer}::unchecked_sub`](https://doc.rust-lang.org/stable/core/primitive.i32.html#method.unchecked_sub)
-
[`<[T]>::split_at_unchecked`](https://doc.rust-lang.org/stable/core/primitive.slice.html#method.split_at_unchecked)
-
[`<[T]>::split_at_mut_unchecked`](https://doc.rust-lang.org/stable/core/primitive.slice.html#method.split_at_mut_unchecked)
-
[`<[u8]>::utf8_chunks`](https://doc.rust-lang.org/stable/core/primitive.slice.html#method.utf8\_chunks)
-
[`str::Utf8Chunks`](https://doc.rust-lang.org/stable/core/str/struct.Utf8Chunks.html)
-
[`str::Utf8Chunk`](https://doc.rust-lang.org/stable/core/str/struct.Utf8Chunk.html)
- [`<*const
T>::is_aligned`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.is_aligned)
- [`<*mut
T>::is_aligned`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.is_aligned-1)
-
[`NonNull::is_aligned`](https://doc.rust-lang.org/stable/core/ptr/struct.NonNull.html#method.is_aligned)
- [`<*const
[T]>::len`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.len)
- [`<*mut
[T]>::len`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.len-1)
- [`<*const
[T]>::is_empty`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.is_empty)
- [`<*mut
[T]>::is_empty`](https://doc.rust-lang.org/stable/core/primitive.pointer.html#method.is_empty-1)
-
[`NonNull::<[T]>::is_empty`](https://doc.rust-lang.org/stable/core/ptr/struct.NonNull.html#method.is_empty)
-
[`CStr::count_bytes`](https://doc.rust-lang.org/stable/core/ffi/c_str/struct.CStr.html#method.count_bytes)
-
[`io::Error::downcast`](https://doc.rust-lang.org/stable/std/io/struct.Error.html#method.downcast)
-
[`num::NonZero<T>`](https://doc.rust-lang.org/stable/core/num/struct.NonZero.html)
-
[`path::absolute`](https://doc.rust-lang.org/stable/std/path/fn.absolute.html)
-
[`proc_macro::Literal::byte_character`](https://doc.rust-lang.org/stable/proc_macro/struct.Literal.html#method.byte_character)
-
[`proc_macro::Literal::c_string`](https://doc.rust-lang.org/stable/proc_macro/struct.Literal.html#method.c_string)

These APIs are now stable in const contexts:

-
[`Atomic*::into_inner`](https://doc.rust-lang.org/stable/core/sync/atomic/struct.AtomicUsize.html#method.into_inner)
-
[`io::Cursor::new`](https://doc.rust-lang.org/stable/std/io/struct.Cursor.html#method.new)
-
[`io::Cursor::get_ref`](https://doc.rust-lang.org/stable/std/io/struct.Cursor.html#method.get_ref)
-
[`io::Cursor::position`](https://doc.rust-lang.org/stable/std/io/struct.Cursor.html#method.position)
-   [`io::empty`](https://doc.rust-lang.org/stable/std/io/fn.empty.html)
- [`io::repeat`](https://doc.rust-lang.org/stable/std/io/fn.repeat.html)
-   [`io::sink`](https://doc.rust-lang.org/stable/std/io/fn.sink.html)
-
[`panic::Location::caller`](https://doc.rust-lang.org/stable/std/panic/struct.Location.html#method.caller)
-
[`panic::Location::file`](https://doc.rust-lang.org/stable/std/panic/struct.Location.html#method.file)
-
[`panic::Location::line`](https://doc.rust-lang.org/stable/std/panic/struct.Location.html#method.line)
-
[`panic::Location::column`](https://doc.rust-lang.org/stable/std/panic/struct.Location.html#method.column)

<a id="1.79.0-Cargo"></a>

## Cargo

- [Prevent dashes in `lib.name`, always normalizing to
`_`.](https://togithub.com/rust-lang/cargo/pull/12783/)
- [Stabilize MSRV-aware version requirement selection in `cargo
add`.](https://togithub.com/rust-lang/cargo/pull/13608/)
- [Switch to using `gitoxide` by default for listing
files.](https://togithub.com/rust-lang/cargo/pull/13696/)
- [Error on `[project]` in Edition 2024; `cargo fix --edition` will
change it to
`[package]`.](https://togithub.com/rust-lang/cargo/pull/13747/)

<a id="1.79.0-Rustdoc"></a>

## Rustdoc

- [Always display stability version even if it's the same as the
containing item.](https://togithub.com/rust-lang/rust/pull/118441/)
- [Show a single search result for items with multiple
paths.](https://togithub.com/rust-lang/rust/pull/119912/)
- [Support typing `/` in docs to begin a
search.](https://togithub.com/rust-lang/rust/pull/123355/)

<a id="1.79.0-Misc"></a>

## Misc

<a id="1.79.0-Compatibility-Notes"></a>

## Compatibility Notes

- [Update the minimum external LLVM to
17.](https://togithub.com/rust-lang/rust/pull/122649/)
- [`RustcEncodable` and `RustcDecodable` are soft-destabilized, to be
removed
from the prelude in next
edition.](https://togithub.com/rust-lang/rust/pull/116016/)
- [The `wasm_c_abi` future-incompatibility lint will warn about use of
the
non-spec-compliant C
ABI.](https://togithub.com/rust-lang/rust/pull/117918/)
    Use `wasm-bindgen v0.2.88` to generate forward-compatible bindings.
- [Check return types of function types for
well-formedness](https://togithub.com/rust-lang/rust/pull/115538)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "* * * * *" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/crate-ci/typos).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM5My4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-13 15:12:16 +00:00
Ed Page
cfe759ac8d chore: Release 2024-06-12 10:47:35 -05:00
Ed Page
dc4ac38a10 chore(ci): Drop arm64 2024-06-12 10:47:24 -05:00
Ed Page
19fbd96065 chore: Release 2024-06-12 10:33:28 -05:00
Ed Page
9d10c4ded9 chore(ci): Fix release target for arm64 2024-06-12 10:33:14 -05:00
Ed Page
bb99fe166c chore: Release 2024-06-12 10:00:27 -05:00
Ed Page
9536266db7 docs: Update changelog 2024-06-12 10:00:12 -05:00
Ed Page
cabb273dba
Merge pull request #947 from smerle33/linux-arm64
feat(release): Add linux arm64 build to matrix
2024-06-12 09:59:20 -05:00
smerle33
fadf0cc5f1
feat(release): Add linux arm64 build to matrix 2024-06-12 08:08:44 +02:00
Ed Page
acbff432fb chore: Release 2024-06-10 17:00:33 -05:00
Ed Page
9aa5df7194 chore: Release 2024-06-10 17:00:12 -05:00
Ed Page
36cd149f12 docs: Update changelog 2024-06-10 16:59:36 -05:00
Ed Page
b9ca296c83
Merge pull request #1032 from epage/opts
fix(dict): Improve spelling suggestions
2024-06-10 16:57:23 -05:00
Ed Page
30625e3bf1 fix(dict): Improve spelling suggestions
Fixes #1014
2024-06-10 16:47:39 -05:00
Ed Page
668a700146
Merge pull request #1031 from qsantos/fix-trailing-spaces
Fix trailing spaces
2024-06-10 10:58:46 -05:00
Quentin Santos
169e892ab6 Fix trailing spaces 2024-06-10 17:37:35 +02:00
Ed Page
8382594ee0 chore: Release 2024-06-07 10:12:31 -05:00
Ed Page
e1f52262c1 docs: Update changelog 2024-06-07 10:12:11 -05:00
Ed Page
372a352672
Merge pull request #1030 from epage/arbitral
fix(dict): Don't correct arbitral
2024-06-07 10:11:43 -05:00
Ed Page
c94dbf9024 fix(dict): Don't correct arbitral
Fixes #1028
2024-06-07 09:07:52 -05:00
Ed Page
e12da5495c chore: Release 2024-06-07 07:58:55 -05:00
Ed Page
49d37361a0 chore: Release 2024-06-05 14:40:23 -05:00
Ed Page
32458c6289 docs: Update changelog 2024-06-05 14:40:11 -05:00
Ed Page
8d0593d333
Merge pull request #1019 from SOF3/go-flate
fix(dict): ignore flate for Go files
2024-06-05 14:39:08 -05:00
SOFe
107f99d4c6
fix(dict): Ignore flate for Go files
Signed-off-by: SOFe <sofe2038@gmail.com>
2024-06-05 14:01:51 +08:00
Ed Page
7039c66c7f chore: Encourage cloneable repositories 2024-06-04 15:33:50 -05:00
Ed Page
1353a953a5 chore: Encourage use of repository 2024-06-04 15:33:16 -05:00
Ed Page
160c60dfce
Merge pull request #1026 from noahp/noahp/dotall
docs(ref): Add dotall specifier to block ignore
2024-06-04 15:21:32 -05:00
Noah Pendleton
c7a34fcbe2 docs(ref): Add dotall specifier to block ignore
Needed a `(?s)` to match multiple enclosed newlines. And added a
non-greedy modifier and matching test to prevent double blocks from
causing intermediate lines to be ignored:

```shell
# spellchecker:off
should be ignored
# spellchecker:on
should not be ignored  # without non-greedy, this is also ignored
# spellchecker:off
should be ignored
# spellchecker:on
```
2024-06-04 15:56:21 -04:00
Ed Page
d9da472373
Merge pull request #1022 from crate-ci/renovate/itertools-0.x
chore(deps): Update Rust crate itertools to 0.13
2024-06-04 11:43:55 -05:00
Ed Page
19cbc79842
Merge pull request #1023 from RainRat/master
fix typos (the literal kind)
2024-06-03 12:33:57 -05:00
RainRat
e8b6bdd1d7 Update README
revert change
2024-06-03 08:51:36 -07:00
Ed Page
ce6badcd18 chore: Fix typo 2024-06-03 10:29:26 -05:00
RainRat
6bd7433d4a
Merge branch 'crate-ci:master' into master 2024-06-03 08:18:13 -07:00
Ed Page
41752caac9 chore: Release 2024-06-03 10:13:10 -05:00
Ed Page
44f8d4dcd9 chore: Release 2024-06-03 10:11:02 -05:00
Ed Page
31bc39cd93 chore: Release 2024-06-03 10:10:12 -05:00
Ed Page
36ea96d62e docs: Update changelog 2024-06-03 10:09:12 -05:00
Ed Page
2a9c27225e
Merge pull request #1025 from epage/may
fix(dict): May updates
2024-06-03 10:08:18 -05:00
Ed Page
439681f6de fix(dict): May updates
Fixes #1007
2024-06-03 09:54:56 -05:00
RainRat
8e26045211 fix typos (the literal kind) 2024-06-01 22:08:33 -07:00
renovate[bot]
0d0233b9e0
chore(deps): Update compatible (#1021)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [ahash](https://togithub.com/tkaitchuck/ahash) | dependencies | patch
| `0.8.7` -> `0.8.11` |
| [anstream](https://togithub.com/rust-cli/anstyle) | dependencies |
patch | `0.6.13` -> `0.6.14` |
| [anstyle](https://togithub.com/rust-cli/anstyle) | dependencies |
patch | `1.0.6` -> `1.0.7` |
| [anyhow](https://togithub.com/dtolnay/anyhow) | dependencies | patch |
`1.0.75` -> `1.0.86` |
| [assert_fs](https://togithub.com/assert-rs/assert_fs) |
dev-dependencies | patch | `1.1.0` -> `1.1.1` |
| [bstr](https://togithub.com/BurntSushi/bstr) | dependencies | patch |
`1.9.0` -> `1.9.1` |
| [colorchoice-clap](https://togithub.com/rust-cli/anstyle) |
dependencies | patch | `1.0.3` -> `1.0.4` |
| [enumflags2](https://togithub.com/meithecatte/enumflags2) |
dependencies | patch | `0.7.8` -> `0.7.9` |
| [env_logger](https://togithub.com/rust-cli/env_logger) | dependencies
| patch | `0.11.1` -> `0.11.3` |
|
[ignore](https://togithub.com/BurntSushi/ripgrep/tree/master/crates/ignore)
([source](https://togithub.com/BurntSushi/ripgrep/tree/HEAD/crates/ignore))
| dependencies | patch | `0.4.20` -> `0.4.22` |
| [log](https://togithub.com/rust-lang/log) | dependencies | patch |
`0.4.20` -> `0.4.21` |
| [serde](https://serde.rs)
([source](https://togithub.com/serde-rs/serde)) | dependencies | patch |
`1.0.189` -> `1.0.203` |
| [serde_json](https://togithub.com/serde-rs/json) | dependencies |
patch | `1.0.107` -> `1.0.117` |
|
[snapbox](https://togithub.com/assert-rs/trycmd/tree/main/crates/snapbox)
([source](https://togithub.com/assert-rs/trycmd)) | dev-dependencies |
patch | `0.6.5` -> `0.6.7` |
| [thiserror](https://togithub.com/dtolnay/thiserror) | dependencies |
patch | `1.0.49` -> `1.0.61` |
| [toml](https://togithub.com/toml-rs/toml) | dependencies | patch |
`0.8.12` -> `0.8.13` |
| [winnow](https://togithub.com/winnow-rs/winnow) | dependencies | patch
| `0.6.7` -> `0.6.9` |

---

### Release Notes

<details>
<summary>tkaitchuck/ahash (ahash)</summary>

###
[`v0.8.11`](https://togithub.com/tkaitchuck/aHash/releases/tag/v0.8.11)

[Compare
Source](https://togithub.com/tkaitchuck/ahash/compare/v0.8.10...v0.8.11)

Patch release to further strengthen u64 fastpath based on
[#&#8203;210](https://togithub.com/tkaitchuck/ahash/issues/210)

**Full Changelog**:
https://github.com/tkaitchuck/aHash/compare/v0.8.10...v0.8.11

###
[`v0.8.10`](https://togithub.com/tkaitchuck/aHash/releases/tag/v0.8.10)

[Compare
Source](https://togithub.com/tkaitchuck/ahash/compare/v0.8.9...v0.8.10)

Patch to fix
[#&#8203;210](https://togithub.com/tkaitchuck/ahash/issues/210) which
caused poor distribution when hashing a single u64 on nightly.

**Full Changelog**:
https://github.com/tkaitchuck/aHash/compare/v0.8.9...v0.8.10

###
[`v0.8.9`](https://togithub.com/tkaitchuck/aHash/releases/tag/v0.8.9)

[Compare
Source](https://togithub.com/tkaitchuck/ahash/compare/v0.8.8...v0.8.9)

Minor patch to fix
[#&#8203;207](https://togithub.com/tkaitchuck/ahash/issues/207)

**Full Changelog**:
https://github.com/tkaitchuck/aHash/compare/v0.8.8...v0.8.9

###
[`v0.8.8`](https://togithub.com/tkaitchuck/aHash/releases/tag/v0.8.8)

[Compare
Source](https://togithub.com/tkaitchuck/ahash/compare/0.8.7...v0.8.8)

#### What's Changed

- Fix some typos by [@&#8203;striezel](https://togithub.com/striezel) in
[https://github.com/tkaitchuck/aHash/pull/192](https://togithub.com/tkaitchuck/aHash/pull/192)
- Update GitHub Actions CI by
[@&#8203;striezel](https://togithub.com/striezel) in
[https://github.com/tkaitchuck/aHash/pull/193](https://togithub.com/tkaitchuck/aHash/pull/193)
- Bump rust-version to 1.72.0 by
[@&#8203;Jefffrey](https://togithub.com/Jefffrey) in
[https://github.com/tkaitchuck/aHash/pull/196](https://togithub.com/tkaitchuck/aHash/pull/196)
- Increase the MSRV presubmit checks to include multiple architectures
by [@&#8203;tkaitchuck](https://togithub.com/tkaitchuck) in
[https://github.com/tkaitchuck/aHash/pull/197](https://togithub.com/tkaitchuck/aHash/pull/197)

#### New Contributors

- [@&#8203;striezel](https://togithub.com/striezel) made their first
contribution in
[https://github.com/tkaitchuck/aHash/pull/192](https://togithub.com/tkaitchuck/aHash/pull/192)
- [@&#8203;Jefffrey](https://togithub.com/Jefffrey) made their first
contribution in
[https://github.com/tkaitchuck/aHash/pull/196](https://togithub.com/tkaitchuck/aHash/pull/196)

**Full Changelog**:
https://github.com/tkaitchuck/aHash/compare/0.8.7...v0.8.8

</details>

<details>
<summary>rust-cli/anstyle (anstream)</summary>

###
[`v0.6.14`](https://togithub.com/rust-cli/anstyle/compare/anstream-v0.6.13...anstream-v0.6.14)

[Compare
Source](https://togithub.com/rust-cli/anstyle/compare/anstream-v0.6.13...anstream-v0.6.14)

</details>

<details>
<summary>dtolnay/anyhow (anyhow)</summary>

### [`v1.0.86`](https://togithub.com/dtolnay/anyhow/releases/tag/1.0.86)

[Compare
Source](https://togithub.com/dtolnay/anyhow/compare/1.0.85...1.0.86)

- Fix parse error in `ensure!` with non-literal after minus sign
([#&#8203;373](https://togithub.com/dtolnay/anyhow/issues/373))

### [`v1.0.85`](https://togithub.com/dtolnay/anyhow/releases/tag/1.0.85)

[Compare
Source](https://togithub.com/dtolnay/anyhow/compare/1.0.84...1.0.85)

- Improve `ensure!` macro's rules to unblock some rustc pretty-printer
improvements
([#&#8203;368](https://togithub.com/dtolnay/anyhow/issues/368),
[#&#8203;371](https://togithub.com/dtolnay/anyhow/issues/371))

### [`v1.0.84`](https://togithub.com/dtolnay/anyhow/releases/tag/1.0.84)

[Compare
Source](https://togithub.com/dtolnay/anyhow/compare/1.0.83...1.0.84)

- Disallow calling `ensure!` through a `Not` impl for a type that is not
`bool` ([#&#8203;367](https://togithub.com/dtolnay/anyhow/issues/367))

### [`v1.0.83`](https://togithub.com/dtolnay/anyhow/releases/tag/1.0.83)

[Compare
Source](https://togithub.com/dtolnay/anyhow/compare/1.0.82...1.0.83)

- Integrate compile-time checking of cfgs
([#&#8203;363](https://togithub.com/dtolnay/anyhow/issues/363))

### [`v1.0.82`](https://togithub.com/dtolnay/anyhow/releases/tag/1.0.82)

[Compare
Source](https://togithub.com/dtolnay/anyhow/compare/1.0.81...1.0.82)

-   Documentation improvements

### [`v1.0.81`](https://togithub.com/dtolnay/anyhow/releases/tag/1.0.81)

[Compare
Source](https://togithub.com/dtolnay/anyhow/compare/1.0.80...1.0.81)

- Make backtrace support available when using -Dwarnings
([#&#8203;354](https://togithub.com/dtolnay/anyhow/issues/354))

### [`v1.0.80`](https://togithub.com/dtolnay/anyhow/releases/tag/1.0.80)

[Compare
Source](https://togithub.com/dtolnay/anyhow/compare/1.0.79...1.0.80)

-   Fix unused_imports warnings when compiled by rustc 1.78

### [`v1.0.79`](https://togithub.com/dtolnay/anyhow/releases/tag/1.0.79)

[Compare
Source](https://togithub.com/dtolnay/anyhow/compare/1.0.78...1.0.79)

- Work around improperly cached build script result by sccache
([#&#8203;340](https://togithub.com/dtolnay/anyhow/issues/340))

### [`v1.0.78`](https://togithub.com/dtolnay/anyhow/releases/tag/1.0.78)

[Compare
Source](https://togithub.com/dtolnay/anyhow/compare/1.0.77...1.0.78)

- Reduce spurious rebuilds under RustRover IDE when using a nightly
toolchain
([#&#8203;337](https://togithub.com/dtolnay/anyhow/issues/337))

### [`v1.0.77`](https://togithub.com/dtolnay/anyhow/releases/tag/1.0.77)

[Compare
Source](https://togithub.com/dtolnay/anyhow/compare/1.0.76...1.0.77)

- Make `anyhow::Error::backtrace` available on stable Rust compilers
1.65+ ([#&#8203;293](https://togithub.com/dtolnay/anyhow/issues/293),
thanks [@&#8203;LukasKalbertodt](https://togithub.com/LukasKalbertodt))

### [`v1.0.76`](https://togithub.com/dtolnay/anyhow/releases/tag/1.0.76)

[Compare
Source](https://togithub.com/dtolnay/anyhow/compare/1.0.75...1.0.76)

- Opt in to `unsafe_op_in_unsafe_fn` lint
([#&#8203;329](https://togithub.com/dtolnay/anyhow/issues/329))

</details>

<details>
<summary>assert-rs/assert_fs (assert_fs)</summary>

###
[`v1.1.1`](https://togithub.com/assert-rs/assert_fs/blob/HEAD/CHANGELOG.md#111---2024-01-12)

[Compare
Source](https://togithub.com/assert-rs/assert_fs/compare/v1.1.0...v1.1.1)

##### Internal

-   Dependency update

</details>

<details>
<summary>BurntSushi/bstr (bstr)</summary>

###
[`v1.9.1`](https://togithub.com/BurntSushi/bstr/compare/1.9.0...1.9.1)

[Compare
Source](https://togithub.com/BurntSushi/bstr/compare/1.9.0...1.9.1)

</details>

<details>
<summary>meithecatte/enumflags2 (enumflags2)</summary>

###
[`v0.7.9`](https://togithub.com/meithecatte/enumflags2/releases/tag/v0.7.9):
Release 0.7.9

[Compare
Source](https://togithub.com/meithecatte/enumflags2/compare/v0.7.8...v0.7.9)

- The `BitFlag` trait now includes convenience re-exports for the
constructors of `BitFlags`. This lets you do `MyFlag::from_bits` instead
`BitFlags::<MyFlag>::from_bits` where the type of the flag cannot be
inferred from context (thanks
[@&#8203;ronnodas](https://togithub.com/ronnodas)).
- The documentation now calls out the fact that the implementation of
`PartialOrd` may not be what you expect (reported by
[@&#8203;ronnodas](https://togithub.com/ronnodas)).

</details>

<details>
<summary>rust-cli/env_logger (env_logger)</summary>

###
[`v0.11.3`](https://togithub.com/rust-cli/env_logger/blob/HEAD/CHANGELOG.md#0113---2024-03-05)

[Compare
Source](https://togithub.com/rust-cli/env_logger/compare/v0.11.2...v0.11.3)

##### Features

-   Experimental support for key-value logging behind `unstable-kv`

###
[`v0.11.2`](https://togithub.com/rust-cli/env_logger/blob/HEAD/CHANGELOG.md#0112---2024-02-13)

[Compare
Source](https://togithub.com/rust-cli/env_logger/compare/v0.11.1...v0.11.2)

</details>

<details>
<summary>BurntSushi/ripgrep (ignore)</summary>

###
[`v0.4.22`](https://togithub.com/BurntSushi/ripgrep/compare/ignore-0.4.21...ignore-0.4.22)

[Compare
Source](https://togithub.com/BurntSushi/ripgrep/compare/ignore-0.4.21...ignore-0.4.22)

###
[`v0.4.21`](https://togithub.com/BurntSushi/ripgrep/compare/ignore-0.4.20...ignore-0.4.21)

[Compare
Source](https://togithub.com/BurntSushi/ripgrep/compare/ignore-0.4.20...ignore-0.4.21)

</details>

<details>
<summary>rust-lang/log (log)</summary>

###
[`v0.4.21`](https://togithub.com/rust-lang/log/blob/HEAD/CHANGELOG.md#0421---2024-02-27)

[Compare
Source](https://togithub.com/rust-lang/log/compare/0.4.20...0.4.21)

</details>

<details>
<summary>serde-rs/serde (serde)</summary>

###
[`v1.0.203`](https://togithub.com/serde-rs/serde/releases/tag/v1.0.203)

[Compare
Source](https://togithub.com/serde-rs/serde/compare/v1.0.202...v1.0.203)

- Documentation improvements
([#&#8203;2747](https://togithub.com/serde-rs/serde/issues/2747))

###
[`v1.0.202`](https://togithub.com/serde-rs/serde/releases/tag/v1.0.202)

[Compare
Source](https://togithub.com/serde-rs/serde/compare/v1.0.201...v1.0.202)

- Provide public access to RenameAllRules in serde_derive_internals
([#&#8203;2743](https://togithub.com/serde-rs/serde/issues/2743))

###
[`v1.0.201`](https://togithub.com/serde-rs/serde/releases/tag/v1.0.201)

[Compare
Source](https://togithub.com/serde-rs/serde/compare/v1.0.200...v1.0.201)

- Resolve unexpected_cfgs warning
([#&#8203;2737](https://togithub.com/serde-rs/serde/issues/2737))

###
[`v1.0.200`](https://togithub.com/serde-rs/serde/releases/tag/v1.0.200)

[Compare
Source](https://togithub.com/serde-rs/serde/compare/v1.0.199...v1.0.200)

- Fix formatting of "invalid type" and "invalid value" deserialization
error messages containing NaN or infinite floats
([#&#8203;2733](https://togithub.com/serde-rs/serde/issues/2733), thanks
[@&#8203;jamessan](https://togithub.com/jamessan))

###
[`v1.0.199`](https://togithub.com/serde-rs/serde/releases/tag/v1.0.199)

[Compare
Source](https://togithub.com/serde-rs/serde/compare/v1.0.198...v1.0.199)

- Fix ambiguous associated item when `forward_to_deserialize_any!` is
used on an enum with `Error` variant
([#&#8203;2732](https://togithub.com/serde-rs/serde/issues/2732), thanks
[@&#8203;aatifsyed](https://togithub.com/aatifsyed))

###
[`v1.0.198`](https://togithub.com/serde-rs/serde/releases/tag/v1.0.198)

[Compare
Source](https://togithub.com/serde-rs/serde/compare/v1.0.197...v1.0.198)

- Support serializing and deserializing `Saturating<T>`
([#&#8203;2709](https://togithub.com/serde-rs/serde/issues/2709), thanks
[@&#8203;jbethune](https://togithub.com/jbethune))

###
[`v1.0.197`](https://togithub.com/serde-rs/serde/releases/tag/v1.0.197)

[Compare
Source](https://togithub.com/serde-rs/serde/compare/v1.0.196...v1.0.197)

-   Fix unused_imports warnings when compiled by rustc 1.78
- Optimize code size of some Display impls
([#&#8203;2697](https://togithub.com/serde-rs/serde/issues/2697), thanks
[@&#8203;nyurik](https://togithub.com/nyurik))

###
[`v1.0.196`](https://togithub.com/serde-rs/serde/releases/tag/v1.0.196)

[Compare
Source](https://togithub.com/serde-rs/serde/compare/v1.0.195...v1.0.196)

- Improve formatting of "invalid type" error messages involving floats
([#&#8203;2682](https://togithub.com/serde-rs/serde/issues/2682))

###
[`v1.0.195`](https://togithub.com/serde-rs/serde/releases/tag/v1.0.195)

[Compare
Source](https://togithub.com/serde-rs/serde/compare/v1.0.194...v1.0.195)

- Prevent remote definitions of tuple struct or tuple variant from
triggering dead_code warning
([#&#8203;2671](https://togithub.com/serde-rs/serde/issues/2671))

###
[`v1.0.194`](https://togithub.com/serde-rs/serde/releases/tag/v1.0.194)

[Compare
Source](https://togithub.com/serde-rs/serde/compare/v1.0.193...v1.0.194)

- Update proc-macro2 to fix caching issue when using a rustc-wrapper
such as sccache

###
[`v1.0.193`](https://togithub.com/serde-rs/serde/releases/tag/v1.0.193)

[Compare
Source](https://togithub.com/serde-rs/serde/compare/v1.0.192...v1.0.193)

- Fix field names used for the deserialization of `RangeFrom` and
`RangeTo`
([#&#8203;2653](https://togithub.com/serde-rs/serde/issues/2653),
[#&#8203;2654](https://togithub.com/serde-rs/serde/issues/2654),
[#&#8203;2655](https://togithub.com/serde-rs/serde/issues/2655), thanks
[@&#8203;emilbonnek](https://togithub.com/emilbonnek))

###
[`v1.0.192`](https://togithub.com/serde-rs/serde/releases/tag/v1.0.192)

[Compare
Source](https://togithub.com/serde-rs/serde/compare/v1.0.191...v1.0.192)

- Allow internal tag field in untagged variant
([#&#8203;2646](https://togithub.com/serde-rs/serde/issues/2646), thanks
[@&#8203;robsdedude](https://togithub.com/robsdedude))

###
[`v1.0.191`](https://togithub.com/serde-rs/serde/releases/tag/v1.0.191)

[Compare
Source](https://togithub.com/serde-rs/serde/compare/v1.0.190...v1.0.191)

-   Documentation improvements

###
[`v1.0.190`](https://togithub.com/serde-rs/serde/releases/tag/v1.0.190)

[Compare
Source](https://togithub.com/serde-rs/serde/compare/v1.0.189...v1.0.190)

- Preserve NaN sign when deserializing f32 from f64 or vice versa
([#&#8203;2637](https://togithub.com/serde-rs/serde/issues/2637))

</details>

<details>
<summary>serde-rs/json (serde_json)</summary>

###
[`v1.0.117`](https://togithub.com/serde-rs/json/releases/tag/v1.0.117)

[Compare
Source](https://togithub.com/serde-rs/json/compare/v1.0.116...v1.0.117)

- Resolve unexpected_cfgs warning
([#&#8203;1130](https://togithub.com/serde-rs/json/issues/1130))

###
[`v1.0.116`](https://togithub.com/serde-rs/json/releases/tag/v1.0.116)

[Compare
Source](https://togithub.com/serde-rs/json/compare/v1.0.115...v1.0.116)

- Make module structure comprehensible to static analysis
([#&#8203;1124](https://togithub.com/serde-rs/json/issues/1124), thanks
[@&#8203;mleonhard](https://togithub.com/mleonhard))

###
[`v1.0.115`](https://togithub.com/serde-rs/json/releases/tag/v1.0.115)

[Compare
Source](https://togithub.com/serde-rs/json/compare/v1.0.114...v1.0.115)

-   Documentation improvements

###
[`v1.0.114`](https://togithub.com/serde-rs/json/releases/tag/v1.0.114)

[Compare
Source](https://togithub.com/serde-rs/json/compare/v1.0.113...v1.0.114)

-   Fix unused_imports warnings when compiled by rustc 1.78

###
[`v1.0.113`](https://togithub.com/serde-rs/json/releases/tag/v1.0.113)

[Compare
Source](https://togithub.com/serde-rs/json/compare/v1.0.112...v1.0.113)

- Add `swap_remove` and `shift_remove` methods on Map
([#&#8203;1109](https://togithub.com/serde-rs/json/issues/1109))

###
[`v1.0.112`](https://togithub.com/serde-rs/json/releases/tag/v1.0.112)

[Compare
Source](https://togithub.com/serde-rs/json/compare/v1.0.111...v1.0.112)

- Improve formatting of "invalid type" error messages involving floats
([#&#8203;1107](https://togithub.com/serde-rs/json/issues/1107))

###
[`v1.0.111`](https://togithub.com/serde-rs/json/releases/tag/v1.0.111)

[Compare
Source](https://togithub.com/serde-rs/json/compare/v1.0.110...v1.0.111)

- Improve floating point parsing performance on loongarch64
([#&#8203;1100](https://togithub.com/serde-rs/json/issues/1100), thanks
[@&#8203;heiher](https://togithub.com/heiher))

###
[`v1.0.110`](https://togithub.com/serde-rs/json/releases/tag/v1.0.110)

[Compare
Source](https://togithub.com/serde-rs/json/compare/v1.0.109...v1.0.110)

- Update proc-macro2 to fix caching issue when using a rustc-wrapper
such as sccache

###
[`v1.0.109`](https://togithub.com/serde-rs/json/releases/tag/v1.0.109)

[Compare
Source](https://togithub.com/serde-rs/json/compare/v1.0.108...v1.0.109)

-   Documentation improvements

###
[`v1.0.108`](https://togithub.com/serde-rs/json/releases/tag/v1.0.108)

[Compare
Source](https://togithub.com/serde-rs/json/compare/v1.0.107...v1.0.108)

- Documentation improvements
([#&#8203;1075](https://togithub.com/serde-rs/json/issues/1075),
[#&#8203;1081](https://togithub.com/serde-rs/json/issues/1081),
[#&#8203;1082](https://togithub.com/serde-rs/json/issues/1082), thanks
[@&#8203;dimo414](https://togithub.com/dimo414) and
[@&#8203;fritzrehde](https://togithub.com/fritzrehde))

</details>

<details>
<summary>assert-rs/trycmd (snapbox)</summary>

###
[`v0.6.7`](https://togithub.com/assert-rs/trycmd/compare/snapbox-v0.6.6...snapbox-v0.6.7)

[Compare
Source](https://togithub.com/assert-rs/trycmd/compare/snapbox-v0.6.6...snapbox-v0.6.7)

###
[`v0.6.6`](https://togithub.com/assert-rs/trycmd/compare/snapbox-v0.6.5...snapbox-v0.6.6)

[Compare
Source](https://togithub.com/assert-rs/trycmd/compare/snapbox-v0.6.5...snapbox-v0.6.6)

</details>

<details>
<summary>dtolnay/thiserror (thiserror)</summary>

###
[`v1.0.61`](https://togithub.com/dtolnay/thiserror/releases/tag/1.0.61)

[Compare
Source](https://togithub.com/dtolnay/thiserror/compare/1.0.60...1.0.61)

- Use `core::fmt` and `core::panic` to facilitate `error_in_core`
support
([#&#8203;299](https://togithub.com/dtolnay/thiserror/issues/299),
thanks [@&#8203;jordens](https://togithub.com/jordens))

###
[`v1.0.60`](https://togithub.com/dtolnay/thiserror/releases/tag/1.0.60)

[Compare
Source](https://togithub.com/dtolnay/thiserror/compare/1.0.59...1.0.60)

- Resolve unexpected_cfgs warning
([#&#8203;298](https://togithub.com/dtolnay/thiserror/issues/298))

###
[`v1.0.59`](https://togithub.com/dtolnay/thiserror/releases/tag/1.0.59)

[Compare
Source](https://togithub.com/dtolnay/thiserror/compare/1.0.58...1.0.59)

- Unblock testing of rustc `debug-fmt-detail` option
([#&#8203;297](https://togithub.com/dtolnay/thiserror/issues/297))

###
[`v1.0.58`](https://togithub.com/dtolnay/thiserror/releases/tag/1.0.58)

[Compare
Source](https://togithub.com/dtolnay/thiserror/compare/1.0.57...1.0.58)

- Make backtrace support available when using -Dwarnings
([#&#8203;292](https://togithub.com/dtolnay/thiserror/issues/292))

###
[`v1.0.57`](https://togithub.com/dtolnay/thiserror/releases/tag/1.0.57)

[Compare
Source](https://togithub.com/dtolnay/thiserror/compare/1.0.56...1.0.57)

- Generate more efficient `Display` impl for error message which do not
contain any interpolated value
([#&#8203;286](https://togithub.com/dtolnay/thiserror/issues/286),
thanks [@&#8203;nyurik](https://togithub.com/nyurik))

###
[`v1.0.56`](https://togithub.com/dtolnay/thiserror/releases/tag/1.0.56)

[Compare
Source](https://togithub.com/dtolnay/thiserror/compare/1.0.55...1.0.56)

- Update proc-macro2 to fix caching issue when using a rustc-wrapper
such as sccache

###
[`v1.0.55`](https://togithub.com/dtolnay/thiserror/releases/tag/1.0.55)

[Compare
Source](https://togithub.com/dtolnay/thiserror/compare/1.0.54...1.0.55)

- Work around improperly cached build script result by sccache – second
attempt
([#&#8203;280](https://togithub.com/dtolnay/thiserror/issues/280))

###
[`v1.0.54`](https://togithub.com/dtolnay/thiserror/releases/tag/1.0.54)

[Compare
Source](https://togithub.com/dtolnay/thiserror/compare/1.0.53...1.0.54)

- Work around improperly cached build script result by sccache – first
attempt
([#&#8203;279](https://togithub.com/dtolnay/thiserror/issues/279))

###
[`v1.0.53`](https://togithub.com/dtolnay/thiserror/releases/tag/1.0.53)

[Compare
Source](https://togithub.com/dtolnay/thiserror/compare/1.0.52...1.0.53)

- Reduce spurious rebuilds under RustRover IDE when using a nightly
toolchain
([#&#8203;270](https://togithub.com/dtolnay/thiserror/issues/270))

###
[`v1.0.52`](https://togithub.com/dtolnay/thiserror/releases/tag/1.0.52)

[Compare
Source](https://togithub.com/dtolnay/thiserror/compare/1.0.51...1.0.52)

- Fix interaction with RUSTC_BOOTSTRAP
([#&#8203;269](https://togithub.com/dtolnay/thiserror/issues/269))

###
[`v1.0.51`](https://togithub.com/dtolnay/thiserror/releases/tag/1.0.51)

[Compare
Source](https://togithub.com/dtolnay/thiserror/compare/1.0.50...1.0.51)

- Improve diagnostics when an invalid attribute previously caused
thiserror to generate no `Error` impl
([#&#8203;266](https://togithub.com/dtolnay/thiserror/issues/266))

###
[`v1.0.50`](https://togithub.com/dtolnay/thiserror/releases/tag/1.0.50)

[Compare
Source](https://togithub.com/dtolnay/thiserror/compare/1.0.49...1.0.50)

- Improve diagnostic when a #\[source], #\[from], or #\[transparant]
attribute refers to a type that has no std::error::Error impl
([#&#8203;258](https://togithub.com/dtolnay/thiserror/issues/258),
thanks [@&#8203;de-vri-es](https://togithub.com/de-vri-es))

</details>

<details>
<summary>toml-rs/toml (toml)</summary>

###
[`v0.8.13`](https://togithub.com/toml-rs/toml/compare/toml-v0.8.12...toml-v0.8.13)

[Compare
Source](https://togithub.com/toml-rs/toml/compare/toml-v0.8.12...toml-v0.8.13)

</details>

<details>
<summary>winnow-rs/winnow (winnow)</summary>

###
[`v0.6.9`](https://togithub.com/winnow-rs/winnow/blob/HEAD/CHANGELOG.md#069---2024-05-28)

[Compare
Source](https://togithub.com/winnow-rs/winnow/compare/v0.6.8...v0.6.9)

##### Compatibility

-   Bump MSRV to 1.65

##### Features

-   Add `Debug` impls for `stream::Stateful` and `stream::Recoverable`

###
[`v0.6.8`](https://togithub.com/winnow-rs/winnow/blob/HEAD/CHANGELOG.md#068---2024-05-06)

[Compare
Source](https://togithub.com/winnow-rs/winnow/compare/v0.6.7...v0.6.8)

##### Features

-   Support `&mut [impl Parser]` within `alt`

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 5am on the first day of the
month" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/crate-ci/typos).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNzcuOCIsInVwZGF0ZWRJblZlciI6IjM3LjM3Ny44IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-01 02:58:27 +00:00