Skip to content

Commit b8598a1

Browse files
committed
chore: upgrade userfaultfd to 0.5.1
userfaultfd brings in an old version of proc-macro2 crate which breaks the compilation of aws-lc-rs. Update it to 0.5.1 to fix the issue. We were also planning to do that anyway, since userfaultfd was bringing in a very old version of the nix crate. Fixes #3608 Signed-off-by: Babis Chalios <[email protected]>
1 parent 3791bdd commit b8598a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/vmm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ serde = { version = "1.0.136", features = ["derive"] }
2020
serde_json = "1.0.78"
2121
timerfd = "1.2.0"
2222
thiserror = "1.0.32"
23-
userfaultfd = "0.5.0"
23+
userfaultfd = "0.5.1"
2424
versionize = "0.1.10"
2525
versionize_derive = "0.1.5"
2626
vm-allocator = "0.1.0"

tests/host_tools/uffd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
libc = "0.2.117"
99
serde = { version = "1.0.136", features = ["derive"] }
1010
serde_json = "1.0.78"
11-
userfaultfd = "0.5.0"
11+
userfaultfd = "0.5.1"
1212

1313
utils = { path = "../../../src/utils" }
1414

0 commit comments

Comments
 (0)