Skip to content

Commit feb78c9

Browse files
authored
Bump memmap2 from 0.9.8 to 0.9.9 (#698)
Bumps [memmap2](https://github.com/RazrFalcon/memmap2-rs) from 0.9.8 to 0.9.9. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/RazrFalcon/memmap2-rs/blob/master/CHANGELOG.md">memmap2's changelog</a>.</em></p> <blockquote> <h2>[0.9.9] - 2025-10-21</h2> <h3>Fixed</h3> <ul> <li>Fix compilation on visionOS (and other apple operating systems). <a href="https://github.com/sinkingsugar"><code>@​sinkingsugar</code></a></li> <li>Do not assume <code>isize::MAX</code> fits in a <code>u64</code>. <a href="https://github.com/ThomasHabets"><code>@​ThomasHabets</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/RazrFalcon/memmap2-rs/commit/cc94666eabb82a3a1647f8dc1d949a9ffc6babff"><code>cc94666</code></a> Merge pull request <a href="https://redirect.github.com/RazrFalcon/memmap2-rs/issues/158">#158</a> from RazrFalcon/release/v0.9.9</li> <li><a href="https://github.com/RazrFalcon/memmap2-rs/commit/bfb74b1d76c3e3a6afa228ee02fb486eb134a8f1"><code>bfb74b1</code></a> Update changelog and bump version to v0.9.9</li> <li><a href="https://github.com/RazrFalcon/memmap2-rs/commit/83bf8cf5736d8e2a46a2c4aef0b7125cd8f339b1"><code>83bf8cf</code></a> Merge pull request <a href="https://redirect.github.com/RazrFalcon/memmap2-rs/issues/155">#155</a> from ThomasHabets/safe-128</li> <li><a href="https://github.com/RazrFalcon/memmap2-rs/commit/5f753ab4bf78a041614d26b36f55d05400bf7739"><code>5f753ab</code></a> Update src/lib.rs</li> <li><a href="https://github.com/RazrFalcon/memmap2-rs/commit/7e839b9446d94da46b053e6ae31aaa5e57055ea7"><code>7e839b9</code></a> Merge pull request <a href="https://redirect.github.com/RazrFalcon/memmap2-rs/issues/157">#157</a> from sinkingsugar/master</li> <li><a href="https://github.com/RazrFalcon/memmap2-rs/commit/1ab625b3b53b14c8fbac0a612cbcc6eaaf86691b"><code>1ab625b</code></a> Add visionOS CI check to ensure compilation</li> <li><a href="https://github.com/RazrFalcon/memmap2-rs/commit/d0cbc3362908617fd6adcac8d84dddbbee91d4c0"><code>d0cbc33</code></a> Replace individual Apple OS checks with target_vendor = &quot;apple&quot;</li> <li><a href="https://github.com/RazrFalcon/memmap2-rs/commit/5a30f6b79683446e3851263fac15e30301df16b6"><code>5a30f6b</code></a> Add visionOS support</li> <li><a href="https://github.com/RazrFalcon/memmap2-rs/commit/4f3d1aa7886f7d7d488ab6589cd26e39b8fd5d7d"><code>4f3d1aa</code></a> Future proof <code>validate_len()</code> for 128bit</li> <li>See full diff in <a href="https://github.com/RazrFalcon/memmap2-rs/compare/v0.9.8...v0.9.9">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=memmap2&package-manager=cargo&previous-version=0.9.8&new-version=0.9.9)](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) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 <dependency name> 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) </details>
2 parents a61ffe7 + 67476ce commit feb78c9

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

samply-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ yaxpeax-x86 = { version = "2", default-features = false, features = ["std", "fmt
2525
yaxpeax-arm = { version = "0.4", default-features = false, features = ["std"] }
2626

2727
[dev-dependencies]
28-
memmap2 = "0.9.4"
28+
memmap2 = "0.9.9"
2929
anyhow = "1"
3030
futures = "0.3.5"
3131
assert-json-diff = "2.0.1"

samply-symbols/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ linux-perf-data = "0.11.1"
6161
crc32fast = "1.4.2"
6262

6363
[dev-dependencies]
64-
memmap2 = "0.9.4"
64+
memmap2 = "0.9.9"
6565
anyhow = "1"
6666
futures = "0.3.5"

samply/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ clap = { version = "4", features = ["derive"] }
2727
byteorder = "1.4.3"
2828
debugid = "0.8.0"
2929
memchr = "2.7.2"
30-
memmap2 = "0.9.4"
30+
memmap2 = "0.9.9"
3131
serde_json = "1"
3232
thiserror = "2"
3333
tempfile = "3.13"

tools/dump_table/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ chunked_caching = []
1515
# samply-symbols = { path = "../../samply-symbols", features = ["partial_read_stats"] }
1616
samply-symbols = { path = "../../samply-symbols" }
1717
clap = { version = "4", features = ["derive"] }
18-
memmap2 = "0.9.4"
18+
memmap2 = "0.9.9"
1919
anyhow = "1"
2020
futures = "0.3.5"

tools/query_api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99
[dependencies]
1010
samply-api = { path = "../../samply-api" }
1111
clap = { version = "4", features = ["derive"] }
12-
memmap2 = "0.9.4"
12+
memmap2 = "0.9.9"
1313
anyhow = "1"
1414
futures = "0.3.5"
1515
serde_json = "1"

wholesym/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ reqwest = { version = "0.12", default-features = false, features = [
3636
"deflate"
3737
] }
3838
bytes = "1.10"
39-
memmap2 = "0.9.4"
39+
memmap2 = "0.9.9"
4040
tokio = { version = "1.38", features = ["fs", "macros"] }
4141
futures-util = "0.3.30"
4242
fs4 = "0.13"

0 commit comments

Comments
 (0)