-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
During cargo publish, verify that src directory is not modified by the build.rs #5073
Comments
Hm, I've tagged this E-mentor, but we haven't really discussed if we want this feature at all. Will bring it up the next cargo team meeting. |
We've discussed this on the meeting and we do want this feature, hence feature-accepted label. We've figured out a better strategy to detect this error than making I think |
Verify that src dir wasn't modified by build.rs when publishing Fixes issue #5073. Implemented during RustFest Paris `impl days`.
This can be closed now: it's been fixed with #5584. |
This is not recommended, and cargo publish fails unless you want to proceed with --no-verify. See rust-lang/cargo#5073. I am copying the approach taken in Zondax/ledger-rs@43908c4, where we generate the proto sources in OUT_DIR (an envvar available to build scripts), and then communicating the list of generated mods to rustc via a custom envvar.
Hello, I meet a problem due to this: I'm working on a crate, and need generate code in src only for doc test. For example, I generate code in # #[path = "test_utils/mod.rs"]
# mod test_utils;
use test_utils::xxx; But I cannot publish it recentlty:
I tried add // build.rs
// This can generate code but cannot be published
fn main() {
println!("cargo:warning=Generate some code");
}
// This can be published but cannot generate code
fn main() {
#[cfg(test)]
println!("cargo:warning=Generate some code");
} It will be so kind if anyone can give me a suggestion. |
Is there a reason you are generating into |
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
# What ❔ Prepares 0.1.0 release (already on crates.io)⚠️ Changes the build script for cudart to use [`OUT_DIR`](https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts), since it's an idiomatic approach and breaking it [may have unexpected results](rust-lang/cargo#5073). ## Why ❔ Releasing on crates.io ## Checklist <!-- Check your PR fulfills the following items. --> <!-- For draft PRs check the boxes as you complete them. --> - [ ] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [ ] Tests for the changes have been added / updated. - [ ] Documentation comments have been added / updated. - [ ] Code has been formatted via `cargo fmt` and checked with `cargo check` for any errors or warnings.
A common pitfall when doing
build.rs
code generation in Rust is to write generated files directly to/src
. It may seem fine on the first blush, but it does cause problems when you use such crate as a dependency, because there's an implicit invariant that sources in.cargo/registry
should be immutable. Breaking this invariant sometimes is fine, but sometimes leads to pretty bewildering bugs:cargo doc
. abonander/mime_guess#31So, I think we, first of all, should formally declare and document that build scripts should not modify stuff outside of
OUT_DIR
. We can enforce this rule during pre-flight check incargo publish
, by making the directory with sources read-only before the build. That is, in this line, we should add an equivalent ofchown ua-w -r dst
.The text was updated successfully, but these errors were encountered: