You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #19203 it was discovered that serde-derive 1.0.172 starts to use precompiled binary, but the precompiled file is not considered as data file in Rust rules, so Bazel excludes them from sandbox.
There is some ways to fix it:
Pin serde-derive to 1.0.171, which is the last version without precompiled binary
Description
In #19203 it was discovered that serde-derive 1.0.172 starts to use precompiled binary, but the precompiled file is not considered as data file in Rust rules, so Bazel excludes them from sandbox.
There is some ways to fix it:
data_attr
so that the precompiled binary can be used (e.g. https://github.com/google/cargo-raze/blob/afe9b483b0449eb043f3fa8aa08f62afffcfa2ed/impl/Cargo.toml#L138)Personally I don't like the idea of depending on a precompiled binary, so I don't want to pursue (3). For now I opted for (1) in #19203.
The text was updated successfully, but these errors were encountered: