-
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
Provide a flag for package
to avoid regenerating/generating Cargo.lock, thus decoupling packaging from the registry
#15159
Comments
Before 1.84, the lockfile was already being generated if it had a bin or an example. How did you workaround that problem? Are you dealing with packaging-order with packages within a workspace or does this cross workspaces? If the latter, could you explain more about that process? If its for workspaces, could you test and report back on whether |
I didn't personally, most of the work I do for Debian is within the first scenario (packaging single crates from crates.io), plus a couple of cdylibs, and Within Rust Team, we are not currently affected by lockfile issues. However, we plan to support packaging workspaces using
AFAIK
For the sake of giving you an answer based on a pre-existing implementation I hacked More generally, what I think should work and does not is: empty registry, Footnotes
|
Actually, I think I do see a fairly possible scenario where cross-workspace packaging-order issues may arise in Debian, still having to do with circular dependencies. Library crate This is currently hard to do because of the change in 1.84: building the .deb for What we would do in this case, I guess, is patch out the dev-dependency of /cc @Fabian-Gruenbichler to see if I overlooked something in the scenario above |
that would be me, and indeed, this is quite annoying for us at Proxmox. we've written quite a bit of software in Rust over the past few years which is shipped as Debian packages (we are a Debian derivative). most of our crates are not (yet) published on crates.io for various reasons, and debcargo calls cargo's package action internally when (Debian-)packaging crates from a local tree. we use a local fake registry (consisting of packaged crates) to replace crates.io via this means if we have a crate A depending on B and dev-depending on C, we need to have Debian packages for B and C and their transitive dependencies installed, just to run I know this probably all sounds a bit involved/cumbersome/weird from upstream's PoV - I can go into more detail regarding the rationale for why things work as they do there, but to make the rather long story short - there definitely is a real world use case for running |
just to add: for us |
no, that example seems correct - this is the equivalent of the |
Then I'll add turning test dependencies into build-dependencies as a 4th issue in the problem statement above. |
### What does this PR try to resolve? Fixes #15059 Fixes #15159 This provides an escape hatch `--exclude-lockfile`for uncommon workflows that don't verify (`--no-verify` is passed) the build with their unpublished packages In effect, this takes the heuristic removed in #14815 and replaces it with a flag When `--exclude-lockfile` is enabled, `cargo package` will not verify the lock file if present, nor will it generate a new one if absent. Cargo.lock will not be included in the resulting tarball. Together with `--no-verify`, this flag decouples packaging from checking the registry index. While this is useful for some non-normal workflows that requires to assemble packages having unpublished dependencies. It is recommended to use `-Zpackage-workspace` to package the entire workspace, instead of opting out lockfile. ### How should we test and review this PR? The first commit was stolen from <NoisyCoil@1a104b5> (credit to @NoisyCoil!) The second added two failing cases we observed in #15059. ### Additional information
Problem
I would like to work on adding a new flag to
cargo package
to avoid regenerating Cargo.lock when packaging, or to avoid generating it at all in case there is none.The main use-case I have in mind for this flag is the packaging work we do in Debian. In Debian we adopt two main approaches when it comes to rust packaging. The first is packaging single crates, with source code obtained from crates.io. The second is packaging from upstream sources (usually git repos), which is particularly useful for multi-crate projects, cross-language projects, or projects that simply don't publish to crates.io. Now, the latter may contain crates with rust libraries, and these rust libraries must be packaged as
librust-$CRATENAME-dev
Debian packages in order for them to be used by other packages as build dependencies. When it comes to this,cargo package
(used either as a command line tool or via the cargo library) is extremely useful in that it creates a canonicalized version of the crate, with the desired included/excluded files, which can then be simply copied to the desired directory and packaged as a .deb. Before this is done (regardless of whether one usescargo package
or not), Cargo.lock is removed from the directory because there is no use for it in Debian (verification is done at the level of the Debian archive -- that is, by verifying .debs themselves -- and versioning is locked to whatever we have in the archive at a certain point in time).Unfortunately, the way
cargo package
currently works -- especially after 1.84 which started regenerating/generating lock files for all crates -- couples the packaging process to the registry in a way that makes it quite hard for us to use it in practice the way we would like. Specifically, if Cargo.lock needs to be regenerated/generated, then all the crates' dependencies must be in the registry in order to usecargo package
. This causes some notable issues:it forces us to deal with ordering. Namely, we need to install packages in the local registry in the correct order, so that they can be found by packages that depend on them. At this time I've only seen evidence of ordering issues between crates, but my guess is this will extend to ordering issues between crate features, which will be much harder to solve
due to the above, it forces us to deal with circular dependencies. An example of this was already reported for cargo publish in publishing a crate that depends on itself as a dev dependency #15151, pointing to the same underlying issue I'm reporting here (but possibly needing a different solution). I have a strong feeling that the issue of circular dependencies will not be solved easily
in general, it prevents us from packaging crates unless all dependencies are installed in the local registry (this was also reported in
cargo package --no-verify
fails if a package's version req is too high for the registry (but works locally) #15059). This is not a logic necessity since, were it not for Cargo.lock, canonicalization and file inclusion/exclusion could proceed with no input from the registry. Packaging crates without dependencies being present locally saves us from downloading and installing dependencies unless they are really neededsince not only dependencies, but also dev-dependencies must be installed in the local registry, test/example/benchmark dependencies turn into actual build-dependencies. This in itself is a separate issue than circular dependencies, but can ultimately cause (cross-workspace) circular build-dependencies (see e.g. the scenario in my comment below).
Proposed Solution
Since as I said we don't care about Cargo.lock in Debian (again, we actually remove it from the final package), all of this would be solved for us if one could just skip lock file regeneration/generation. I've already tested that, when used together with
--no-verify
, a new--no-gen-lockfile
flag that implements such skipping would decouplecargo package
from the registry: in practice one can purge the registry from all crates and usecargo package
with no dependencies present locally at all. This way the issue of dependency ordering/cyles obviously never arises.A proof of concept is at https://github.com/NoisyCoil/cargo/tree/no-lockfile, but I would like to hear your thoughts before submitting an actual PR.
Notes
I am not sure this proposal is suitable for solving #15151, since
publish
should probably have different requirements thanpackage
. Indeed, in my proof of concept, theno-gen-lockfile
flag is turned off for the (internal) use thatpublish
makes ofpackage
. On the other hand, it may help (or even completely solve) #15059.The text was updated successfully, but these errors were encountered: