1
1
mirror of https://github.com/Byron/gitoxide synced 2025-10-05 16:42:40 +02:00

Bump the cargo group with 3 updates

Bumps the cargo group with 3 updates: [tracing-forest](https://github.com/QnnOkabayashi/tracing-forest), [hashbrown](https://github.com/rust-lang/hashbrown) and [sysinfo](https://github.com/GuillaumeGomez/sysinfo).


Updates `tracing-forest` from 0.1.6 to 0.2.0
- [Commits](https://github.com/QnnOkabayashi/tracing-forest/commits)

Updates `hashbrown` from 0.15.5 to 0.16.0
- [Release notes](https://github.com/rust-lang/hashbrown/releases)
- [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/hashbrown/compare/v0.15.5...v0.16.0)

Updates `sysinfo` from 0.36.1 to 0.37.0
- [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/GuillaumeGomez/sysinfo/compare/v0.36.1...v0.37.0)

---
updated-dependencies:
- dependency-name: tracing-forest
  dependency-version: 0.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: hashbrown
  dependency-version: 0.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: sysinfo
  dependency-version: 0.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2025-08-30 20:42:30 +00:00
committed by GitHub
parent 525873fafa
commit 074ca1ef98
4 changed files with 41 additions and 11 deletions

44
Cargo.lock generated
View File

@@ -1127,6 +1127,12 @@ version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
[[package]]
name = "foldhash"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
[[package]]
name = "foreign-types"
version = "0.3.2"
@@ -1319,7 +1325,7 @@ dependencies = [
"serde_derive",
"terminal_size",
"tracing",
"tracing-forest",
"tracing-forest 0.1.6",
"tracing-subscriber",
]
@@ -1357,7 +1363,7 @@ dependencies = [
"tempfile",
"thiserror 2.0.16",
"tracing",
"tracing-forest",
"tracing-forest 0.2.0",
"tracing-subscriber",
]
@@ -1838,7 +1844,7 @@ name = "gix-hashtable"
version = "0.9.0"
dependencies = [
"gix-hash",
"hashbrown 0.15.5",
"hashbrown 0.16.0",
"parking_lot",
]
@@ -1876,7 +1882,7 @@ dependencies = [
"gix-traverse",
"gix-utils",
"gix-validate",
"hashbrown 0.15.5",
"hashbrown 0.16.0",
"itoa",
"libc",
"memmap2",
@@ -2707,7 +2713,18 @@ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
dependencies = [
"allocator-api2",
"equivalent",
"foldhash",
"foldhash 0.1.5",
]
[[package]]
name = "hashbrown"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
dependencies = [
"allocator-api2",
"equivalent",
"foldhash 0.2.0",
]
[[package]]
@@ -4615,9 +4632,9 @@ dependencies = [
[[package]]
name = "sysinfo"
version = "0.36.1"
version = "0.37.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "252800745060e7b9ffb7b2badbd8b31cfa4aa2e61af879d0a3bf2a317c20217d"
checksum = "07cec4dc2d2e357ca1e610cfb07de2fa7a10fc3e9fe89f72545f3d244ea87753"
dependencies = [
"libc",
"memchr",
@@ -4966,6 +4983,19 @@ dependencies = [
"tracing-subscriber",
]
[[package]]
name = "tracing-forest"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3298fe855716711a00474eceb89cc7dc254bbe67f6bc4afafdeec5f0c538771c"
dependencies = [
"serde",
"smallvec",
"thiserror 2.0.16",
"tracing",
"tracing-subscriber",
]
[[package]]
name = "tracing-log"
version = "0.2.0"

View File

@@ -83,9 +83,9 @@ rusqlite = { version = "0.37.0", optional = true, features = ["bundled"] }
# for 'corpus'
parking_lot = { version = "0.12.4", optional = true }
sysinfo = { version = "0.36.1", optional = true, default-features = false, features = ["system"] }
sysinfo = { version = "0.37.0", optional = true, default-features = false, features = ["system"] }
serde_json = { version = "1.0.142", optional = true }
tracing-forest = { version = "0.1.5", features = ["serde"], optional = true }
tracing-forest = { version = "0.2.0", features = ["serde"], optional = true }
tracing-subscriber = { version = "0.3.20", optional = true }
tracing = { version = "0.1.37", optional = true }

View File

@@ -16,5 +16,5 @@ doctest = false
[dependencies]
parking_lot = "0.12.4"
hashbrown = { version = "0.15.4", default-features = false, features = ["inline-more"] }
hashbrown = { version = "0.16.0", default-features = false, features = ["inline-more"] }
gix-hash = { version = "^0.19.0", path = "../gix-hash" }

View File

@@ -34,7 +34,7 @@ gix-lock = { version = "^18.0.0", path = "../gix-lock" }
gix-fs = { version = "^0.16.1", path = "../gix-fs" }
gix-utils = { version = "^0.3.0", path = "../gix-utils" }
hashbrown = "0.15.4"
hashbrown = "0.16.0"
fnv = "1.0.7"
thiserror = "2.0.0"
memmap2 = "0.9.7"