Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions Cargo.Bazel.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"checksum": "b3987846afd9d77626eb292c5e15da1921775911b0ea5577deb6ddba25dec68f",
"checksum": "feb42f1e2e73d0b36795d98238ee456bf9eb3044a210393e19d31b12bb57c776",
"crates": {
"adler32 1.2.0": {
"name": "adler32",
Expand Down Expand Up @@ -7137,7 +7137,7 @@
},
"strip_prefix": "iceoryx2-bb/derive-macros",
"patches": [
"@@//patches:iceoryx2_bb_derive_macros_readme.patch"
"@@score_crates+//patches:iceoryx2_bb_derive_macros_readme.patch"
]
}
},
Expand Down Expand Up @@ -8922,7 +8922,7 @@
},
"strip_prefix": "iceoryx2-pal/posix",
"patches": [
"@@//patches:qnx8_iceoryx2.patch"
"@@score_crates+//patches:qnx8_iceoryx2.patch"
]
}
},
Expand Down Expand Up @@ -8957,6 +8957,12 @@
"compile_data_glob": [
"**"
],
"crate_features": {
"common": [
"libc_platform"
],
"selects": {}
},
"deps": {
"common": [
{
Expand Down Expand Up @@ -8987,6 +8993,12 @@
]
}
},
"extra_deps": {
"common": [
"@crate_index__libc-0.2.186//:libc"
],
"selects": {}
},
"edition": "2021",
"version": "0.7.0"
},
Expand Down
7 changes: 7 additions & 0 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,13 @@ crate.spec(
crate.annotation(
crate = "iceoryx2-pal-posix-qnx8",
patches = ["//patches:qnx8_iceoryx2.patch"],
crate_features = ["libc_platform"],
# libc is an optional dep gated behind `workspace = true` in the
# vendored crate's Cargo.toml; since we pull it in via a git crate with
# strip_prefix (no workspace root Cargo.toml present), cargo-bazel can't
# resolve that version reference, so it silently drops the dep even
# with the feature enabled. Wire it in directly instead.
deps = ["@crate_index__libc-0.2.186//:libc"],
repositories = ["crate_index"],
)
crate.spec(
Expand Down
Loading
Loading