mirror of
https://codeberg.org/icewind/mill-scale.git
synced 2026-06-03 09:54:19 +02:00
exclude dev-dependencies when doing semver check
This commit is contained in:
parent
3821e5b444
commit
4c38db3946
1 changed files with 3 additions and 2 deletions
|
|
@ -196,6 +196,7 @@ in
|
|||
// {
|
||||
cargoExtraArgs = "--locked --all-features ${maybeWorkspace}";
|
||||
pname = "${crateName}-msrv";
|
||||
nativeBuildInputs = commonCraneArgs.nativeBuildInputs ++ [final.cargo-hack];
|
||||
};
|
||||
|
||||
crateName =
|
||||
|
|
@ -340,8 +341,8 @@ in
|
|||
// {
|
||||
pname = "${crateName}-msrv";
|
||||
cargoArtifacts = cargoArtifactsMsrv;
|
||||
cargoBuildCommand = "cargo check";
|
||||
cargoExtraArgs = "--release --locked --all-targets --all-features ${maybeWorkspace}";
|
||||
cargoBuildCommand = "cargo hack --no-dev-deps check";
|
||||
cargoExtraArgs = "--release --all-features ${maybeWorkspace}";
|
||||
installPhaseCommand = "mkdir $out";
|
||||
}
|
||||
// packageOpts);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue