From 77f85f390e929341bff95cc5e4fc7f06552ee03a Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 25 Jul 2025 17:38:17 +0000
Subject: [PATCH] build(deps): bump litrs from 0.4.1 to 0.4.2 (#38275)
Bumps [litrs](https://github.com/LukasKalbertodt/litrs) from 0.4.1 to
0.4.2.
Release notes
Sourced from litrs's
releases.
v0.4.2
- Fix incorrect byte string value with non-ASCII
\xHH
byte string escapes
ByteStringLit::parse(r#"b"\xff""#).unwrap().value()
would return [0xc3, 0xbf]
instead of
[0xff]
.
- Remove CR LF normalization to align with spec
- This is technically a breaking change, but released with a minor
version bump as it just aligns with the specification. It is extremely
unlikely to affect any real world use case.
- Fix incorrect error span for out-of-range Unicode escapes
Changelog
Sourced from litrs's
changelog.
[0.4.2] - 2025-07-25
- Fix incorrect byte string value with non-ASCII
\xHH
byte string escapes
ByteStringLit::parse(r#"b"\xff""#).unwrap().value()
would return [0xc3, 0xbf]
instead of
[0xff]
.
- Remove CR LF normalization to align with spec
- This is technically a breaking change, but released with a minor
version bump as it just aligns with the specification. It is extremely
unlikely to affect any real world use case.
- Fix incorrect error span for out-of-range Unicode escapes
Commits
1dc8a3e
Bump version to 0.4.2
8c55d08
Fix incorrect error span for out-of-range Unicode escapes
8fe8552
Fix bug with non-ASCII \xHH byte string escapes
ed84018
Refactor escape code to make it more flexible for upcoming
c-strings
15edbcd
Remove CR LF normalization to align with spec
d3cf292
Update CI workflow
- See full diff in compare
view
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
Cargo.lock | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index a8d2f3e3d48..d254968362b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -4931,9 +4931,9 @@ checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
[[package]]
name = "litrs"
-version = "0.4.1"
+version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b4ce301924b7887e9d637144fdade93f9dfff9b60981d4ac161db09720d39aa5"
+checksum = "f5e54036fe321fd421e10d732f155734c4e4afd610dd556d9a82833ab3ee0bed"
[[package]]
name = "lmdb-master-sys"