From 2cb11c9aba6c12668c601e5871ab2b6a0819cdaa Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 9 Oct 2023 13:36:40 -0700
Subject: [PATCH] Bump byteorder from 1.4.3 to 1.5.0 (#2806)
Bumps [byteorder](https://github.com/BurntSushi/byteorder) from 1.4.3 to
1.5.0.
Commits
ec068ee
1.5.0
0cfb84d
cargo: a few small fixups
62b0e31
changelog: add a note about it not being updated
dd41ee2
msrv: bump to Rust 1.60
52cc70c
safety: verify alignment requirements of floats vs ints
c0b6678
impl: remove unsafe code from read_uint and read_uint128 methods
1e2d8b0
impl: eliminate unsafe_write_num_bytes
368cb55
impl: refactor write_slice macro slightly
c01f0fe
impl: eliminate special case checking target_endian
3409ee1
perf: convert endianess while reading slice in a single pass
- Additional commits viewable in compare
view
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=byteorder&package-manager=cargo&previous-version=1.4.3&new-version=1.5.0)](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 ++--
src/core/Cargo.toml | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 0a3a454f5d..dc23bbf2b9 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -116,9 +116,9 @@ checksum = "ad152d03a2c813c80bb94fedbf3a3f02b28f793e39e7c214c8a0bcc196343de7"
[[package]]
name = "byteorder"
-version = "1.4.3"
+version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
+checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
[[package]]
name = "bzip2"
diff --git a/src/core/Cargo.toml b/src/core/Cargo.toml
index 0cd59b312e..62853e80e5 100644
--- a/src/core/Cargo.toml
+++ b/src/core/Cargo.toml
@@ -26,7 +26,7 @@ maturin = []
[dependencies]
az = "1.0.0"
bytecount = "0.6.4"
-byteorder = "1.4.3"
+byteorder = "1.5.0"
cfg-if = "1.0"
counter = "0.5.7"
finch = { version = "0.6.0", optional = true }