Auto merge of #14445 - epage:locked, r=weihanglo

fix(resolve): Dont show locking workspace members

### What does this PR try to resolve?
This is for `cargo generate-lockfile` and when syncing the lockfile with
the manifest.
We still show it for `cargo update` because of `cargo update
--workspace`.

We hacked around this previously by filtering out the `num_pkgs==1` case
for single packages but this didn't help with workspaces.

### How should we test and review this PR?

### Additional information

This builds on #14440
This commit is contained in:
bors 2024-08-26 22:16:00 +00:00
commit ef854d2f66
177 changed files with 610 additions and 686 deletions

View File

@ -492,15 +492,21 @@ fn print_lockfile_generation(
resolve: &Resolve, resolve: &Resolve,
registry: &mut PackageRegistry<'_>, registry: &mut PackageRegistry<'_>,
) -> CargoResult<()> { ) -> CargoResult<()> {
let changes = PackageChange::new(resolve); let changes = PackageChange::new(ws, resolve);
let num_pkgs: usize = changes.iter().filter(|change| change.kind.is_new()).count(); let num_pkgs: usize = changes
if num_pkgs <= 1 { .iter()
// just ourself, nothing worth reporting .filter(|change| change.kind.is_new() && !change.is_member.unwrap_or(false))
.count();
if num_pkgs == 0 {
// nothing worth reporting
return Ok(()); return Ok(());
} }
status_locking(ws, num_pkgs)?; status_locking(ws, num_pkgs)?;
for change in changes { for change in changes {
if change.is_member.unwrap_or(false) {
continue;
};
match change.kind { match change.kind {
PackageChangeKind::Added => { PackageChangeKind::Added => {
let possibilities = if let Some(query) = change.alternatives_query() { let possibilities = if let Some(query) = change.alternatives_query() {
@ -547,14 +553,21 @@ fn print_lockfile_sync(
resolve: &Resolve, resolve: &Resolve,
registry: &mut PackageRegistry<'_>, registry: &mut PackageRegistry<'_>,
) -> CargoResult<()> { ) -> CargoResult<()> {
let changes = PackageChange::diff(previous_resolve, resolve); let changes = PackageChange::diff(ws, previous_resolve, resolve);
let num_pkgs: usize = changes.iter().filter(|change| change.kind.is_new()).count(); let num_pkgs: usize = changes
.iter()
.filter(|change| change.kind.is_new() && !change.is_member.unwrap_or(false))
.count();
if num_pkgs == 0 { if num_pkgs == 0 {
// nothing worth reporting
return Ok(()); return Ok(());
} }
status_locking(ws, num_pkgs)?; status_locking(ws, num_pkgs)?;
for change in changes { for change in changes {
if change.is_member.unwrap_or(false) {
continue;
};
match change.kind { match change.kind {
PackageChangeKind::Added PackageChangeKind::Added
| PackageChangeKind::Upgraded | PackageChangeKind::Upgraded
@ -597,7 +610,7 @@ fn print_lockfile_updates(
precise: bool, precise: bool,
registry: &mut PackageRegistry<'_>, registry: &mut PackageRegistry<'_>,
) -> CargoResult<()> { ) -> CargoResult<()> {
let changes = PackageChange::diff(previous_resolve, resolve); let changes = PackageChange::diff(ws, previous_resolve, resolve);
let num_pkgs: usize = changes.iter().filter(|change| change.kind.is_new()).count(); let num_pkgs: usize = changes.iter().filter(|change| change.kind.is_new()).count();
if !precise { if !precise {
status_locking(ws, num_pkgs)?; status_locking(ws, num_pkgs)?;
@ -787,20 +800,23 @@ struct PackageChange {
package_id: PackageId, package_id: PackageId,
previous_id: Option<PackageId>, previous_id: Option<PackageId>,
kind: PackageChangeKind, kind: PackageChangeKind,
is_member: Option<bool>,
} }
impl PackageChange { impl PackageChange {
pub fn new(resolve: &Resolve) -> Vec<Self> { pub fn new(ws: &Workspace<'_>, resolve: &Resolve) -> Vec<Self> {
let diff = PackageDiff::new(resolve); let diff = PackageDiff::new(resolve);
Self::with_diff(diff) Self::with_diff(diff, ws)
} }
pub fn diff(previous_resolve: &Resolve, resolve: &Resolve) -> Vec<Self> { pub fn diff(ws: &Workspace<'_>, previous_resolve: &Resolve, resolve: &Resolve) -> Vec<Self> {
let diff = PackageDiff::diff(previous_resolve, resolve); let diff = PackageDiff::diff(previous_resolve, resolve);
Self::with_diff(diff) Self::with_diff(diff, ws)
} }
fn with_diff(diff: impl Iterator<Item = PackageDiff>) -> Vec<Self> { fn with_diff(diff: impl Iterator<Item = PackageDiff>, ws: &Workspace<'_>) -> Vec<Self> {
let member_ids: HashSet<_> = ws.members().map(|p| p.package_id()).collect();
let mut changes = IndexMap::new(); let mut changes = IndexMap::new();
for diff in diff { for diff in diff {
if let Some((previous_id, package_id)) = diff.change() { if let Some((previous_id, package_id)) = diff.change() {
@ -815,38 +831,46 @@ impl PackageChange {
} else { } else {
PackageChangeKind::Upgraded PackageChangeKind::Upgraded
}; };
let is_member = Some(member_ids.contains(&package_id));
let change = Self { let change = Self {
package_id, package_id,
previous_id: Some(previous_id), previous_id: Some(previous_id),
kind, kind,
is_member,
}; };
changes.insert(change.package_id, change); changes.insert(change.package_id, change);
} else { } else {
for package_id in diff.removed { for package_id in diff.removed {
let kind = PackageChangeKind::Removed; let kind = PackageChangeKind::Removed;
let is_member = None;
let change = Self { let change = Self {
package_id, package_id,
previous_id: None, previous_id: None,
kind, kind,
is_member,
}; };
changes.insert(change.package_id, change); changes.insert(change.package_id, change);
} }
for package_id in diff.added { for package_id in diff.added {
let kind = PackageChangeKind::Added; let kind = PackageChangeKind::Added;
let is_member = Some(member_ids.contains(&package_id));
let change = Self { let change = Self {
package_id, package_id,
previous_id: None, previous_id: None,
kind, kind,
is_member,
}; };
changes.insert(change.package_id, change); changes.insert(change.package_id, change);
} }
} }
for package_id in diff.unchanged { for package_id in diff.unchanged {
let kind = PackageChangeKind::Unchanged; let kind = PackageChangeKind::Unchanged;
let is_member = Some(member_ids.contains(&package_id));
let change = Self { let change = Self {
package_id, package_id,
previous_id: None, previous_id: None,
kind, kind,
is_member,
}; };
changes.insert(change.package_id, change); changes.insert(change.package_id, change);
} }

View File

@ -35,7 +35,7 @@ fn depend_on_alt_registry() {
p.cargo("check") p.cargo("check")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[UPDATING] `alternative` index [UPDATING] `alternative` index
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[DOWNLOADING] crates ... [DOWNLOADING] crates ...
[DOWNLOADED] bar v0.0.1 (registry `alternative`) [DOWNLOADED] bar v0.0.1 (registry `alternative`)
[CHECKING] bar v0.0.1 (registry `alternative`) [CHECKING] bar v0.0.1 (registry `alternative`)
@ -88,7 +88,7 @@ fn depend_on_alt_registry_depends_on_same_registry_no_index() {
p.cargo("check") p.cargo("check")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[UPDATING] `alternative` index [UPDATING] `alternative` index
[LOCKING] 3 packages to latest compatible versions [LOCKING] 2 packages to latest compatible versions
[DOWNLOADING] crates ... [DOWNLOADING] crates ...
[DOWNLOADED] baz v0.0.1 (registry `alternative`) [DOWNLOADED] baz v0.0.1 (registry `alternative`)
[DOWNLOADED] bar v0.0.1 (registry `alternative`) [DOWNLOADED] bar v0.0.1 (registry `alternative`)
@ -131,7 +131,7 @@ fn depend_on_alt_registry_depends_on_same_registry() {
p.cargo("check") p.cargo("check")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[UPDATING] `alternative` index [UPDATING] `alternative` index
[LOCKING] 3 packages to latest compatible versions [LOCKING] 2 packages to latest compatible versions
[DOWNLOADING] crates ... [DOWNLOADING] crates ...
[DOWNLOADED] baz v0.0.1 (registry `alternative`) [DOWNLOADED] baz v0.0.1 (registry `alternative`)
[DOWNLOADED] bar v0.0.1 (registry `alternative`) [DOWNLOADED] bar v0.0.1 (registry `alternative`)
@ -176,7 +176,7 @@ fn depend_on_alt_registry_depends_on_crates_io() {
str![[r#" str![[r#"
[UPDATING] `alternative` index [UPDATING] `alternative` index
[UPDATING] `dummy-registry` index [UPDATING] `dummy-registry` index
[LOCKING] 3 packages to latest compatible versions [LOCKING] 2 packages to latest compatible versions
[DOWNLOADING] crates ... [DOWNLOADING] crates ...
[DOWNLOADED] baz v0.0.1 (registry `dummy-registry`) [DOWNLOADED] baz v0.0.1 (registry `dummy-registry`)
[DOWNLOADED] bar v0.0.1 (registry `alternative`) [DOWNLOADED] bar v0.0.1 (registry `alternative`)
@ -217,7 +217,7 @@ fn registry_and_path_dep_works() {
p.cargo("check") p.cargo("check")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[CHECKING] bar v0.0.1 ([ROOT]/foo/bar) [CHECKING] bar v0.0.1 ([ROOT]/foo/bar)
[CHECKING] foo v0.0.1 ([ROOT]/foo) [CHECKING] foo v0.0.1 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -435,7 +435,7 @@ fn alt_registry_and_crates_io_deps() {
str![[r#" str![[r#"
[UPDATING] `alternative` index [UPDATING] `alternative` index
[UPDATING] `dummy-registry` index [UPDATING] `dummy-registry` index
[LOCKING] 3 packages to latest compatible versions [LOCKING] 2 packages to latest compatible versions
[DOWNLOADING] crates ... [DOWNLOADING] crates ...
[DOWNLOADED] crates_io_dep v0.0.1 (registry `dummy-registry`) [DOWNLOADED] crates_io_dep v0.0.1 (registry `dummy-registry`)
[DOWNLOADED] alt_reg_dep v0.1.0 (registry `alternative`) [DOWNLOADED] alt_reg_dep v0.1.0 (registry `alternative`)
@ -710,7 +710,7 @@ fn patch_alt_reg() {
p.cargo("check") p.cargo("check")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[UPDATING] `alternative` index [UPDATING] `alternative` index
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[CHECKING] bar v0.1.0 ([ROOT]/foo/bar) [CHECKING] bar v0.1.0 ([ROOT]/foo/bar)
[CHECKING] foo v0.0.1 ([ROOT]/foo) [CHECKING] foo v0.0.1 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -804,7 +804,7 @@ fn no_api() {
p.cargo("check") p.cargo("check")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[UPDATING] `alternative` index [UPDATING] `alternative` index
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[DOWNLOADING] crates ... [DOWNLOADING] crates ...
[DOWNLOADED] bar v0.0.1 (registry `alternative`) [DOWNLOADED] bar v0.0.1 (registry `alternative`)
[CHECKING] bar v0.0.1 (registry `alternative`) [CHECKING] bar v0.0.1 (registry `alternative`)
@ -1657,7 +1657,7 @@ fn registries_index_relative_url() {
p.cargo("check") p.cargo("check")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[UPDATING] `relative` index [UPDATING] `relative` index
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[DOWNLOADING] crates ... [DOWNLOADING] crates ...
[DOWNLOADED] bar v0.0.1 (registry `relative`) [DOWNLOADED] bar v0.0.1 (registry `relative`)
[CHECKING] bar v0.0.1 (registry `relative`) [CHECKING] bar v0.0.1 (registry `relative`)

View File

@ -218,7 +218,7 @@ fn disallow_artifact_and_no_artifact_dep_to_same_package_within_the_same_dep_cat
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_status(101) .with_status(101)
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[WARNING] foo v0.0.0 ([ROOT]/foo) ignoring invalid dependency `bar_stable` which is missing a lib target [WARNING] foo v0.0.0 ([ROOT]/foo) ignoring invalid dependency `bar_stable` which is missing a lib target
[ERROR] the crate `foo v0.0.0 ([ROOT]/foo)` depends on crate `bar v0.5.0 ([ROOT]/foo/bar)` multiple times with different names [ERROR] the crate `foo v0.0.0 ([ROOT]/foo)` depends on crate `bar v0.5.0 ([ROOT]/foo/bar)` multiple times with different names
@ -328,7 +328,7 @@ fn features_are_unified_among_lib_and_bin_dep_of_same_target() {
p.cargo("build -Z bindeps") p.cargo("build -Z bindeps")
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 3 packages to latest compatible versions [LOCKING] 2 packages to latest compatible versions
[COMPILING] d2 v0.0.1 ([ROOT]/foo/d2) [COMPILING] d2 v0.0.1 ([ROOT]/foo/d2)
[COMPILING] d1 v0.0.1 ([ROOT]/foo/d1) [COMPILING] d1 v0.0.1 ([ROOT]/foo/d1)
[COMPILING] foo v0.0.1 ([ROOT]/foo) [COMPILING] foo v0.0.1 ([ROOT]/foo)
@ -439,7 +439,7 @@ fn features_are_not_unified_among_lib_and_bin_dep_of_different_target() {
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_status(101) .with_status(101)
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 3 packages to latest compatible versions [LOCKING] 2 packages to latest compatible versions
[COMPILING] d2 v0.0.1 ([ROOT]/foo/d2) [COMPILING] d2 v0.0.1 ([ROOT]/foo/d2)
[COMPILING] d1 v0.0.1 ([ROOT]/foo/d1) [COMPILING] d1 v0.0.1 ([ROOT]/foo/d1)
error[E0425]: cannot find function `f2` in crate `d2` error[E0425]: cannot find function `f2` in crate `d2`
@ -601,7 +601,7 @@ fn build_script_with_bin_artifacts() {
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data( .with_stderr_data(
str![[r#" str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] foo v0.0.0 ([ROOT]/foo) [COMPILING] foo v0.0.0 ([ROOT]/foo)
[COMPILING] bar v0.5.0 ([ROOT]/foo/bar) [COMPILING] bar v0.5.0 ([ROOT]/foo/bar)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -795,7 +795,7 @@ fn build_script_with_selected_dashed_bin_artifact_and_lib_true() {
p.cargo("build -Z bindeps") p.cargo("build -Z bindeps")
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] bar-baz v0.5.0 ([ROOT]/foo/bar) [COMPILING] bar-baz v0.5.0 ([ROOT]/foo/bar)
[COMPILING] foo v0.0.0 ([ROOT]/foo) [COMPILING] foo v0.0.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -891,7 +891,7 @@ fn lib_with_selected_dashed_bin_artifact_and_lib_true() {
p.cargo("build -Z bindeps") p.cargo("build -Z bindeps")
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] bar-baz v0.5.0 ([ROOT]/foo/bar) [COMPILING] bar-baz v0.5.0 ([ROOT]/foo/bar)
[COMPILING] foo v0.0.0 ([ROOT]/foo) [COMPILING] foo v0.0.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -942,7 +942,7 @@ fn allow_artifact_and_no_artifact_dep_to_same_package_within_different_dep_categ
p.cargo("test -Z bindeps") p.cargo("test -Z bindeps")
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] bar v0.5.0 ([ROOT]/foo/bar) [COMPILING] bar v0.5.0 ([ROOT]/foo/bar)
[COMPILING] foo v0.0.0 ([ROOT]/foo) [COMPILING] foo v0.0.0 ([ROOT]/foo)
[FINISHED] `test` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `test` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -1017,7 +1017,7 @@ fn disallow_using_example_binaries_as_artifacts() {
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_status(101) .with_status(101)
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[ERROR] dependency `bar` in package `foo` requires a `bin:one-example` artifact to be present. [ERROR] dependency `bar` in package `foo` requires a `bin:one-example` artifact to be present.
"#]]) "#]])
@ -1070,7 +1070,7 @@ fn allow_artifact_and_non_artifact_dependency_to_same_crate() {
p.cargo("check -Z bindeps") p.cargo("check -Z bindeps")
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] bar v0.5.0 ([ROOT]/foo/bar) [COMPILING] bar v0.5.0 ([ROOT]/foo/bar)
[COMPILING] foo v0.0.0 ([ROOT]/foo) [COMPILING] foo v0.0.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -1194,7 +1194,7 @@ fn build_script_deps_adopt_do_not_allow_multiple_targets_under_different_name_an
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_status(101) .with_status(101)
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[ERROR] the crate `foo v0.0.0 ([ROOT]/foo)` depends on crate `bar v0.5.0 ([ROOT]/foo/bar)` multiple times with different names [ERROR] the crate `foo v0.0.0 ([ROOT]/foo)` depends on crate `bar v0.5.0 ([ROOT]/foo/bar)` multiple times with different names
"#]]) "#]])
@ -1300,7 +1300,7 @@ fn no_cross_doctests_works_with_artifacts() {
.arg(&target) .arg(&target)
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] bar v0.5.0 ([ROOT]/foo/bar) [COMPILING] bar v0.5.0 ([ROOT]/foo/bar)
[COMPILING] foo v0.0.1 ([ROOT]/foo) [COMPILING] foo v0.0.1 ([ROOT]/foo)
[FINISHED] `test` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `test` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -1447,7 +1447,7 @@ fn profile_override_basic() {
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data( .with_stderr_data(
str![[r#" str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] bar v0.5.0 ([ROOT]/foo/bar) [COMPILING] bar v0.5.0 ([ROOT]/foo/bar)
[COMPILING] foo v0.0.1 ([ROOT]/foo) [COMPILING] foo v0.0.1 ([ROOT]/foo)
[RUNNING] `rustc --crate-name build_script_build [..] -C opt-level=1 [..]` [RUNNING] `rustc --crate-name build_script_build [..] -C opt-level=1 [..]`
@ -1559,7 +1559,7 @@ fn artifact_dep_target_specified() {
p.cargo("check -Z bindeps") p.cargo("check -Z bindeps")
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] bindep v0.0.0 ([ROOT]/foo/bindep) [COMPILING] bindep v0.0.0 ([ROOT]/foo/bindep)
[CHECKING] foo v0.0.0 ([ROOT]/foo) [CHECKING] foo v0.0.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -1796,7 +1796,7 @@ fn allow_dep_renames_with_multiple_versions() {
.with_stderr_data( .with_stderr_data(
str![[r#" str![[r#"
[UPDATING] `dummy-registry` index [UPDATING] `dummy-registry` index
[LOCKING] 3 packages to latest compatible versions [LOCKING] 2 packages to latest compatible versions
[DOWNLOADING] crates ... [DOWNLOADING] crates ...
[DOWNLOADED] bar v1.0.0 (registry `dummy-registry`) [DOWNLOADED] bar v1.0.0 (registry `dummy-registry`)
[COMPILING] bar v1.0.0 [COMPILING] bar v1.0.0
@ -1858,7 +1858,7 @@ fn allow_artifact_and_non_artifact_dependency_to_same_crate_if_these_are_not_the
p.cargo("build -Z bindeps") p.cargo("build -Z bindeps")
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] bar v0.0.1 ([ROOT]/foo/bar) [COMPILING] bar v0.0.1 ([ROOT]/foo/bar)
[COMPILING] foo v0.0.0 ([ROOT]/foo) [COMPILING] foo v0.0.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -1894,7 +1894,7 @@ fn prevent_no_lib_warning_with_artifact_dependencies() {
p.cargo("check -Z bindeps") p.cargo("check -Z bindeps")
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] bar v0.5.0 ([ROOT]/foo/bar) [COMPILING] bar v0.5.0 ([ROOT]/foo/bar)
[CHECKING] foo v0.0.0 ([ROOT]/foo) [CHECKING] foo v0.0.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -1931,7 +1931,7 @@ fn show_no_lib_warning_with_artifact_dependencies_that_have_no_lib_but_lib_true(
p.cargo("check -Z bindeps") p.cargo("check -Z bindeps")
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[WARNING] foo v0.0.0 ([ROOT]/foo) ignoring invalid dependency `bar` which is missing a lib target [WARNING] foo v0.0.0 ([ROOT]/foo) ignoring invalid dependency `bar` which is missing a lib target
[COMPILING] bar v0.5.0 ([ROOT]/foo/bar) [COMPILING] bar v0.5.0 ([ROOT]/foo/bar)
[CHECKING] foo v0.0.0 ([ROOT]/foo) [CHECKING] foo v0.0.0 ([ROOT]/foo)
@ -1999,7 +1999,7 @@ fn check_missing_crate_type_in_package_fails() {
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_status(101) .with_status(101)
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[ERROR] dependency `bar` in package `foo` requires a [..] artifact to be present. [ERROR] dependency `bar` in package `foo` requires a [..] artifact to be present.
"#]]) "#]])
@ -2150,7 +2150,7 @@ fn env_vars_and_build_products_for_various_build_targets() {
p.cargo("test -Z bindeps") p.cargo("test -Z bindeps")
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] bar v0.5.0 ([ROOT]/foo/bar) [COMPILING] bar v0.5.0 ([ROOT]/foo/bar)
[COMPILING] foo v0.0.0 ([ROOT]/foo) [COMPILING] foo v0.0.0 ([ROOT]/foo)
[FINISHED] `test` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `test` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -2335,7 +2335,7 @@ fn doc_lib_true() {
p.cargo("doc -Z bindeps") p.cargo("doc -Z bindeps")
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] bar v0.0.1 ([ROOT]/foo/bar) [COMPILING] bar v0.0.1 ([ROOT]/foo/bar)
[DOCUMENTING] bar v0.0.1 ([ROOT]/foo/bar) [DOCUMENTING] bar v0.0.1 ([ROOT]/foo/bar)
[DOCUMENTING] foo v0.0.1 ([ROOT]/foo) [DOCUMENTING] foo v0.0.1 ([ROOT]/foo)
@ -2417,7 +2417,7 @@ fn rustdoc_works_on_libs_with_artifacts_and_lib_false() {
p.cargo("doc -Z bindeps") p.cargo("doc -Z bindeps")
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] bar v0.5.0 ([ROOT]/foo/bar) [COMPILING] bar v0.5.0 ([ROOT]/foo/bar)
[DOCUMENTING] foo v0.0.1 ([ROOT]/foo) [DOCUMENTING] foo v0.0.1 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -2624,7 +2624,7 @@ fn calc_bin_artifact_fingerprint() {
p.cargo("check -Z bindeps") p.cargo("check -Z bindeps")
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] bar v0.5.0 ([ROOT]/foo/bar) [COMPILING] bar v0.5.0 ([ROOT]/foo/bar)
[CHECKING] foo v0.1.0 ([ROOT]/foo) [CHECKING] foo v0.1.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -2703,7 +2703,7 @@ fn with_target_and_optional() {
p.cargo("check -Z bindeps -F d1 -v") p.cargo("check -Z bindeps -F d1 -v")
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] d1 v0.0.1 ([ROOT]/foo/d1) [COMPILING] d1 v0.0.1 ([ROOT]/foo/d1)
[RUNNING] `rustc --crate-name d1 [..]--crate-type bin[..] [RUNNING] `rustc --crate-name d1 [..]--crate-type bin[..]
[CHECKING] foo v0.0.1 ([ROOT]/foo) [CHECKING] foo v0.0.1 ([ROOT]/foo)
@ -2753,7 +2753,7 @@ fn with_assumed_host_target_and_optional_build_dep() {
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data( .with_stderr_data(
str![[r#" str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] foo v0.0.1 ([ROOT]/foo) [COMPILING] foo v0.0.1 ([ROOT]/foo)
[COMPILING] d1 v0.0.1 ([ROOT]/foo/d1) [COMPILING] d1 v0.0.1 ([ROOT]/foo/d1)
[RUNNING] `rustc --crate-name build_script_build --edition=2021 [..]--crate-type bin[..] [RUNNING] `rustc --crate-name build_script_build --edition=2021 [..]--crate-type bin[..]
@ -2882,7 +2882,7 @@ fn decouple_same_target_transitive_dep_from_artifact_dep() {
p.cargo("build -Z bindeps") p.cargo("build -Z bindeps")
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 5 packages to latest compatible versions [LOCKING] 4 packages to latest compatible versions
[COMPILING] c v0.1.0 ([ROOT]/foo/c) [COMPILING] c v0.1.0 ([ROOT]/foo/c)
[COMPILING] b v0.1.0 ([ROOT]/foo/b) [COMPILING] b v0.1.0 ([ROOT]/foo/b)
[COMPILING] a v0.1.0 ([ROOT]/foo/a) [COMPILING] a v0.1.0 ([ROOT]/foo/a)
@ -2985,7 +2985,7 @@ fn decouple_same_target_transitive_dep_from_artifact_dep_lib() {
p.cargo("build -Z bindeps") p.cargo("build -Z bindeps")
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 4 packages to latest compatible versions [LOCKING] 3 packages to latest compatible versions
[COMPILING] b v0.1.0 ([ROOT]/foo/b) [COMPILING] b v0.1.0 ([ROOT]/foo/b)
[COMPILING] a v0.1.0 ([ROOT]/foo/a) [COMPILING] a v0.1.0 ([ROOT]/foo/a)
[COMPILING] bar v0.1.0 ([ROOT]/foo/bar) [COMPILING] bar v0.1.0 ([ROOT]/foo/bar)
@ -3112,7 +3112,7 @@ fn decouple_same_target_transitive_dep_from_artifact_dep_and_proc_macro() {
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data( .with_stderr_data(
str![[r#" str![[r#"
[LOCKING] 6 packages to latest compatible versions [LOCKING] 5 packages to latest compatible versions
[COMPILING] d v0.1.0 ([ROOT]/foo/d) [COMPILING] d v0.1.0 ([ROOT]/foo/d)
[COMPILING] a v0.1.0 ([ROOT]/foo/a) [COMPILING] a v0.1.0 ([ROOT]/foo/a)
[COMPILING] b v0.1.0 ([ROOT]/foo/b) [COMPILING] b v0.1.0 ([ROOT]/foo/b)
@ -3179,7 +3179,7 @@ fn same_target_artifact_dep_sharing() {
p.cargo(&format!("build -Z bindeps --target {target}")) p.cargo(&format!("build -Z bindeps --target {target}"))
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 3 packages to latest compatible versions [LOCKING] 2 packages to latest compatible versions
[COMPILING] a v0.1.0 ([ROOT]/foo/a) [COMPILING] a v0.1.0 ([ROOT]/foo/a)
[COMPILING] bar v0.1.0 ([ROOT]/foo/bar) [COMPILING] bar v0.1.0 ([ROOT]/foo/bar)
[COMPILING] foo v0.1.0 ([ROOT]/foo) [COMPILING] foo v0.1.0 ([ROOT]/foo)
@ -3235,7 +3235,7 @@ fn check_transitive_artifact_dependency_with_different_target() {
p.cargo("check -Z bindeps") p.cargo("check -Z bindeps")
.masquerade_as_nightly_cargo(&["bindeps"]) .masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 3 packages to latest compatible versions [LOCKING] 2 packages to latest compatible versions
[ERROR] failed to determine target information for target `custom-target`. [ERROR] failed to determine target information for target `custom-target`.
Artifact dependency `baz` in package `bar v0.0.0 ([ROOT]/foo/bar)` requires building for `custom-target` Artifact dependency `baz` in package `bar v0.0.0 ([ROOT]/foo/bar)` requires building for `custom-target`

View File

@ -824,7 +824,7 @@ fn dev_dependencies2() {
p.cargo("check").with_stderr_data(str![[r#" p.cargo("check").with_stderr_data(str![[r#"
[WARNING] `dev_dependencies` is deprecated in favor of `dev-dependencies` and will not work in the 2024 edition [WARNING] `dev_dependencies` is deprecated in favor of `dev-dependencies` and will not work in the 2024 edition
(in the `foo` package) (in the `foo` package)
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[CHECKING] foo v0.1.0 ([ROOT]/foo) [CHECKING] foo v0.1.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -905,7 +905,7 @@ fn dev_dependencies2_conflict() {
.build(); .build();
p.cargo("check").with_stderr_data(str![[r#" p.cargo("check").with_stderr_data(str![[r#"
[WARNING] `dev_dependencies` is redundant with `dev-dependencies`, preferring `dev-dependencies` in the `foo` package [WARNING] `dev_dependencies` is redundant with `dev-dependencies`, preferring `dev-dependencies` in the `foo` package
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[CHECKING] foo v0.1.0 ([ROOT]/foo) [CHECKING] foo v0.1.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -942,7 +942,7 @@ fn build_dependencies2() {
p.cargo("check").with_stderr_data(str![[r#" p.cargo("check").with_stderr_data(str![[r#"
[WARNING] `build_dependencies` is deprecated in favor of `build-dependencies` and will not work in the 2024 edition [WARNING] `build_dependencies` is deprecated in favor of `build-dependencies` and will not work in the 2024 edition
(in the `foo` package) (in the `foo` package)
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[CHECKING] foo v0.1.0 ([ROOT]/foo) [CHECKING] foo v0.1.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -1023,7 +1023,7 @@ fn build_dependencies2_conflict() {
.build(); .build();
p.cargo("check").with_stderr_data(str![[r#" p.cargo("check").with_stderr_data(str![[r#"
[WARNING] `build_dependencies` is redundant with `build-dependencies`, preferring `build-dependencies` in the `foo` package [WARNING] `build_dependencies` is redundant with `build-dependencies`, preferring `build-dependencies` in the `foo` package
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[CHECKING] foo v0.1.0 ([ROOT]/foo) [CHECKING] foo v0.1.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -1401,7 +1401,7 @@ fn cargo_platform_build_dependencies2() {
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[WARNING] `build_dependencies` is deprecated in favor of `build-dependencies` and will not work in the 2024 edition [WARNING] `build_dependencies` is deprecated in favor of `build-dependencies` and will not work in the 2024 edition
(in the `[HOST_TARGET]` platform target) (in the `[HOST_TARGET]` platform target)
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] build v0.5.0 ([ROOT]/foo/build) [COMPILING] build v0.5.0 ([ROOT]/foo/build)
[COMPILING] foo v0.5.0 ([ROOT]/foo) [COMPILING] foo v0.5.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -1492,7 +1492,7 @@ fn cargo_platform_build_dependencies2_conflict() {
p.cargo("check") p.cargo("check")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[WARNING] `build_dependencies` is redundant with `build-dependencies`, preferring `build-dependencies` in the `[HOST_TARGET]` platform target [WARNING] `build_dependencies` is redundant with `build-dependencies`, preferring `build-dependencies` in the `[HOST_TARGET]` platform target
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] build v0.5.0 ([ROOT]/foo/build) [COMPILING] build v0.5.0 ([ROOT]/foo/build)
[COMPILING] foo v0.5.0 ([ROOT]/foo) [COMPILING] foo v0.5.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -1535,7 +1535,7 @@ fn cargo_platform_dev_dependencies2() {
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[WARNING] `dev_dependencies` is deprecated in favor of `dev-dependencies` and will not work in the 2024 edition [WARNING] `dev_dependencies` is deprecated in favor of `dev-dependencies` and will not work in the 2024 edition
(in the `[HOST_TARGET]` platform target) (in the `[HOST_TARGET]` platform target)
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[CHECKING] foo v0.5.0 ([ROOT]/foo) [CHECKING] foo v0.5.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -1622,7 +1622,7 @@ fn cargo_platform_dev_dependencies2_conflict() {
p.cargo("check") p.cargo("check")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[WARNING] `dev_dependencies` is redundant with `dev-dependencies`, preferring `dev-dependencies` in the `[HOST_TARGET]` platform target [WARNING] `dev_dependencies` is redundant with `dev-dependencies`, preferring `dev-dependencies` in the `[HOST_TARGET]` platform target
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[CHECKING] foo v0.5.0 ([ROOT]/foo) [CHECKING] foo v0.5.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -1667,7 +1667,7 @@ fn default_features2() {
p.cargo("check").with_stderr_data(str![[r#" p.cargo("check").with_stderr_data(str![[r#"
[WARNING] `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition [WARNING] `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition
(in the `a` dependency) (in the `a` dependency)
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[CHECKING] a v0.1.0 ([ROOT]/foo/a) [CHECKING] a v0.1.0 ([ROOT]/foo/a)
[CHECKING] foo v0.1.0 ([ROOT]/foo) [CHECKING] foo v0.1.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -1761,7 +1761,7 @@ fn default_features2_conflict() {
p.cargo("check").with_stderr_data(str![[r#" p.cargo("check").with_stderr_data(str![[r#"
[WARNING] `default_features` is redundant with `default-features`, preferring `default-features` in the `a` dependency [WARNING] `default_features` is redundant with `default-features`, preferring `default-features` in the `a` dependency
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[CHECKING] a v0.1.0 ([ROOT]/foo/a) [CHECKING] a v0.1.0 ([ROOT]/foo/a)
[CHECKING] foo v0.1.0 ([ROOT]/foo) [CHECKING] foo v0.1.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -1840,7 +1840,6 @@ fn workspace_default_features2() {
str![[r#" str![[r#"
[WARNING] [ROOT]/foo/workspace_only/Cargo.toml: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition [WARNING] [ROOT]/foo/workspace_only/Cargo.toml: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition
(in the `dep_workspace_only` dependency) (in the `dep_workspace_only` dependency)
[LOCKING] 4 packages to latest compatible versions
[CHECKING] dep_package_only v0.1.0 ([ROOT]/foo/dep_package_only) [CHECKING] dep_package_only v0.1.0 ([ROOT]/foo/dep_package_only)
[CHECKING] dep_workspace_only v0.1.0 ([ROOT]/foo/dep_workspace_only) [CHECKING] dep_workspace_only v0.1.0 ([ROOT]/foo/dep_workspace_only)
[CHECKING] package_only v0.1.0 ([ROOT]/foo/package_only) [CHECKING] package_only v0.1.0 ([ROOT]/foo/package_only)
@ -2782,7 +2781,7 @@ fn warn_semver_metadata() {
p.cargo("check").with_stderr_data(str![[r#" p.cargo("check").with_stderr_data(str![[r#"
[WARNING] version requirement `1.0.0+1234` for dependency `bar` includes semver metadata which will be ignored, removing the metadata is recommended to avoid confusion [WARNING] version requirement `1.0.0+1234` for dependency `bar` includes semver metadata which will be ignored, removing the metadata is recommended to avoid confusion
[UPDATING] `dummy-registry` index [UPDATING] `dummy-registry` index
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[DOWNLOADING] crates ... [DOWNLOADING] crates ...
[DOWNLOADED] bar v1.0.0 (registry `dummy-registry`) [DOWNLOADED] bar v1.0.0 (registry `dummy-registry`)
[CHECKING] bar v1.0.0 [CHECKING] bar v1.0.0

View File

@ -543,7 +543,7 @@ fn bench_with_deep_lib_dep() {
p.cargo("bench") p.cargo("bench")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] foo v0.0.1 ([ROOT]/foo) [COMPILING] foo v0.0.1 ([ROOT]/foo)
[COMPILING] bar v0.0.1 ([ROOT]/bar) [COMPILING] bar v0.0.1 ([ROOT]/bar)
[FINISHED] `bench` profile [optimized] target(s) in [ELAPSED]s [FINISHED] `bench` profile [optimized] target(s) in [ELAPSED]s
@ -1094,7 +1094,7 @@ fn bench_dylib() {
p.cargo("bench -v") p.cargo("bench -v")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] bar v0.0.1 ([ROOT]/foo/bar) [COMPILING] bar v0.0.1 ([ROOT]/foo/bar)
[RUNNING] [..] -C opt-level=3 [..] [RUNNING] [..] -C opt-level=3 [..]
[COMPILING] foo v0.0.1 ([ROOT]/foo) [COMPILING] foo v0.0.1 ([ROOT]/foo)
@ -1605,7 +1605,7 @@ fn test_bench_multiple_packages() {
"#]]) "#]])
.with_stderr_data( .with_stderr_data(
str![[r#" str![[r#"
[LOCKING] 3 packages to latest compatible versions [LOCKING] 2 packages to latest compatible versions
[COMPILING] bar v0.1.0 ([ROOT]/bar) [COMPILING] bar v0.1.0 ([ROOT]/bar)
[COMPILING] baz v0.1.0 ([ROOT]/baz) [COMPILING] baz v0.1.0 ([ROOT]/baz)
[FINISHED] `bench` profile [optimized] target(s) in [ELAPSED]s [FINISHED] `bench` profile [optimized] target(s) in [ELAPSED]s
@ -1668,7 +1668,6 @@ fn bench_all_workspace() {
p.cargo("bench --workspace") p.cargo("bench --workspace")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar v0.1.0 ([ROOT]/foo/bar) [COMPILING] bar v0.1.0 ([ROOT]/foo/bar)
[COMPILING] foo v0.1.0 ([ROOT]/foo) [COMPILING] foo v0.1.0 ([ROOT]/foo)
[FINISHED] `bench` profile [optimized] target(s) in [ELAPSED]s [FINISHED] `bench` profile [optimized] target(s) in [ELAPSED]s
@ -1860,7 +1859,6 @@ fn bench_all_virtual_manifest() {
p.cargo("bench --workspace") p.cargo("bench --workspace")
.with_stderr_data( .with_stderr_data(
str![[r#" str![[r#"
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar v0.1.0 ([ROOT]/foo/bar) [COMPILING] bar v0.1.0 ([ROOT]/foo/bar)
[COMPILING] baz v0.1.0 ([ROOT]/foo/baz) [COMPILING] baz v0.1.0 ([ROOT]/foo/baz)
[FINISHED] `bench` profile [optimized] target(s) in [ELAPSED]s [FINISHED] `bench` profile [optimized] target(s) in [ELAPSED]s
@ -1943,7 +1941,6 @@ fn bench_virtual_manifest_glob() {
// This should not have `bar` built or benched // This should not have `bar` built or benched
p.cargo("bench -p '*z'") p.cargo("bench -p '*z'")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions
[COMPILING] baz v0.1.0 ([ROOT]/foo/baz) [COMPILING] baz v0.1.0 ([ROOT]/foo/baz)
[FINISHED] `bench` profile [optimized] target(s) in [ELAPSED]s [FINISHED] `bench` profile [optimized] target(s) in [ELAPSED]s
[RUNNING] unittests src/lib.rs (target/release/deps/baz-[HASH][EXE]) [RUNNING] unittests src/lib.rs (target/release/deps/baz-[HASH][EXE])
@ -2052,7 +2049,6 @@ fn bench_virtual_manifest_all_implied() {
p.cargo("bench") p.cargo("bench")
.with_stderr_data( .with_stderr_data(
str![[r#" str![[r#"
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar v0.1.0 ([ROOT]/foo/bar) [COMPILING] bar v0.1.0 ([ROOT]/foo/bar)
[COMPILING] baz v0.1.0 ([ROOT]/foo/baz) [COMPILING] baz v0.1.0 ([ROOT]/foo/baz)
[FINISHED] `bench` profile [optimized] target(s) in [ELAPSED]s [FINISHED] `bench` profile [optimized] target(s) in [ELAPSED]s

View File

@ -870,7 +870,6 @@ fn cargo_compile_with_invalid_code_in_deps() {
.with_status(101) .with_status(101)
.with_stderr_data( .with_stderr_data(
str![[r#" str![[r#"
[LOCKING] 3 packages to latest compatible versions
[COMPILING] bar v0.1.0 ([ROOT]/bar) [COMPILING] bar v0.1.0 ([ROOT]/bar)
[COMPILING] baz v0.1.0 ([ROOT]/baz) [COMPILING] baz v0.1.0 ([ROOT]/baz)
[ERROR] could not compile `bar` (lib) due to 1 previous error [ERROR] could not compile `bar` (lib) due to 1 previous error
@ -939,7 +938,7 @@ fn cargo_compile_with_warnings_in_a_dep_package() {
p.cargo("build") p.cargo("build")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] bar v0.5.0 ([ROOT]/foo/bar) [COMPILING] bar v0.5.0 ([ROOT]/foo/bar)
[WARNING] [..]dead[..] [WARNING] [..]dead[..]
... ...
@ -3423,7 +3422,7 @@ fn bad_platform_specific_dependency() {
p.cargo("build") p.cargo("build")
.with_status(101) .with_status(101)
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] foo v0.5.0 ([ROOT]/foo) [COMPILING] foo v0.5.0 ([ROOT]/foo)
error[E0463]: can't find crate for `bar` error[E0463]: can't find crate for `bar`
... ...
@ -3653,7 +3652,7 @@ fn transitive_dependencies_not_available() {
p.cargo("build -v") p.cargo("build -v")
.with_status(101) .with_status(101)
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 3 packages to latest compatible versions [LOCKING] 2 packages to latest compatible versions
[COMPILING] bbbbb v0.0.1 ([ROOT]/foo/b) [COMPILING] bbbbb v0.0.1 ([ROOT]/foo/b)
[RUNNING] `rustc [..] [RUNNING] `rustc [..]
[COMPILING] aaaaa v0.0.1 ([ROOT]/foo/a) [COMPILING] aaaaa v0.0.1 ([ROOT]/foo/a)
@ -4064,7 +4063,7 @@ fn invalid_spec() {
p.cargo("build -p notAValidDep") p.cargo("build -p notAValidDep")
.with_status(101) .with_status(101)
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[ERROR] package ID specification `notAValidDep` did not match any packages [ERROR] package ID specification `notAValidDep` did not match any packages
"#]]) "#]])
@ -4511,7 +4510,6 @@ fn build_all_workspace() {
p.cargo("build --workspace") p.cargo("build --workspace")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar v0.1.0 ([ROOT]/foo/bar) [COMPILING] bar v0.1.0 ([ROOT]/foo/bar)
[COMPILING] foo v0.1.0 ([ROOT]/foo) [COMPILING] foo v0.1.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -4545,7 +4543,6 @@ fn build_all_exclude() {
p.cargo("build --workspace --exclude baz") p.cargo("build --workspace --exclude baz")
.with_stderr_data( .with_stderr_data(
str![[r#" str![[r#"
[LOCKING] 3 packages to latest compatible versions
[COMPILING] foo v0.1.0 ([ROOT]/foo) [COMPILING] foo v0.1.0 ([ROOT]/foo)
[COMPILING] bar v0.1.0 ([ROOT]/foo/bar) [COMPILING] bar v0.1.0 ([ROOT]/foo/bar)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -4617,7 +4614,6 @@ fn build_all_exclude_not_found() {
.with_stderr_data( .with_stderr_data(
str![[r#" str![[r#"
[WARNING] excluded package(s) `baz` not found in workspace `[ROOT]/foo` [WARNING] excluded package(s) `baz` not found in workspace `[ROOT]/foo`
[LOCKING] 2 packages to latest compatible versions
[COMPILING] foo v0.1.0 ([ROOT]/foo) [COMPILING] foo v0.1.0 ([ROOT]/foo)
[COMPILING] bar v0.1.0 ([ROOT]/foo/bar) [COMPILING] bar v0.1.0 ([ROOT]/foo/bar)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -4653,7 +4649,6 @@ fn build_all_exclude_glob() {
p.cargo("build --workspace --exclude '*z'") p.cargo("build --workspace --exclude '*z'")
.with_stderr_data( .with_stderr_data(
str![[r#" str![[r#"
[LOCKING] 3 packages to latest compatible versions
[COMPILING] bar v0.1.0 ([ROOT]/foo/bar) [COMPILING] bar v0.1.0 ([ROOT]/foo/bar)
[COMPILING] foo v0.1.0 ([ROOT]/foo) [COMPILING] foo v0.1.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -4688,7 +4683,6 @@ fn build_all_exclude_glob_not_found() {
.with_stderr_data( .with_stderr_data(
str![[r#" str![[r#"
[WARNING] excluded package pattern(s) `*z` not found in workspace `[ROOT]/foo` [WARNING] excluded package pattern(s) `*z` not found in workspace `[ROOT]/foo`
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar v0.1.0 ([ROOT]/foo/bar) [COMPILING] bar v0.1.0 ([ROOT]/foo/bar)
[COMPILING] foo v0.1.0 ([ROOT]/foo) [COMPILING] foo v0.1.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -4747,7 +4741,6 @@ fn build_all_workspace_implicit_examples() {
p.cargo("build --workspace --examples") p.cargo("build --workspace --examples")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar v0.1.0 ([ROOT]/foo/bar) [COMPILING] bar v0.1.0 ([ROOT]/foo/bar)
[COMPILING] foo v0.1.0 ([ROOT]/foo) [COMPILING] foo v0.1.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -4784,7 +4777,6 @@ fn build_all_virtual_manifest() {
p.cargo("build --workspace") p.cargo("build --workspace")
.with_stderr_data( .with_stderr_data(
str![[r#" str![[r#"
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar v0.1.0 ([ROOT]/foo/bar) [COMPILING] bar v0.1.0 ([ROOT]/foo/bar)
[COMPILING] baz v0.1.0 ([ROOT]/foo/baz) [COMPILING] baz v0.1.0 ([ROOT]/foo/baz)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -4815,7 +4807,6 @@ fn build_virtual_manifest_all_implied() {
p.cargo("build") p.cargo("build")
.with_stderr_data( .with_stderr_data(
str![[r#" str![[r#"
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar v0.1.0 ([ROOT]/foo/bar) [COMPILING] bar v0.1.0 ([ROOT]/foo/bar)
[COMPILING] baz v0.1.0 ([ROOT]/foo/baz) [COMPILING] baz v0.1.0 ([ROOT]/foo/baz)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -4844,7 +4835,6 @@ fn build_virtual_manifest_one_project() {
p.cargo("build -p bar") p.cargo("build -p bar")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar v0.1.0 ([ROOT]/foo/bar) [COMPILING] bar v0.1.0 ([ROOT]/foo/bar)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -4870,7 +4860,6 @@ fn build_virtual_manifest_glob() {
p.cargo("build -p '*z'") p.cargo("build -p '*z'")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions
[COMPILING] baz v0.1.0 ([ROOT]/foo/baz) [COMPILING] baz v0.1.0 ([ROOT]/foo/baz)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -4955,7 +4944,6 @@ fn build_all_virtual_manifest_implicit_examples() {
p.cargo("build --workspace --examples") p.cargo("build --workspace --examples")
.with_stderr_data( .with_stderr_data(
str![[r#" str![[r#"
[LOCKING] 2 packages to latest compatible versions
[COMPILING] baz v0.1.0 ([ROOT]/foo/baz) [COMPILING] baz v0.1.0 ([ROOT]/foo/baz)
[COMPILING] bar v0.1.0 ([ROOT]/foo/bar) [COMPILING] bar v0.1.0 ([ROOT]/foo/bar)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -5004,7 +4992,7 @@ fn build_all_member_dependency_same_name() {
p.cargo("build --workspace") p.cargo("build --workspace")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[UPDATING] `dummy-registry` index [UPDATING] `dummy-registry` index
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[DOWNLOADING] crates ... [DOWNLOADING] crates ...
[DOWNLOADED] a v0.1.0 (registry `dummy-registry`) [DOWNLOADED] a v0.1.0 (registry `dummy-registry`)
[COMPILING] a v0.1.0 [COMPILING] a v0.1.0
@ -5240,7 +5228,7 @@ fn rustc_wrapper_relative() {
.env("RUSTC_WRAPPER", &relative_path) .env("RUSTC_WRAPPER", &relative_path)
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[UPDATING] `dummy-registry` index [UPDATING] `dummy-registry` index
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[DOWNLOADING] crates ... [DOWNLOADING] crates ...
[DOWNLOADED] bar v1.0.0 (registry `dummy-registry`) [DOWNLOADED] bar v1.0.0 (registry `dummy-registry`)
[COMPILING] bar v1.0.0 [COMPILING] bar v1.0.0
@ -5773,7 +5761,7 @@ fn building_a_dependent_crate_without_bin_should_fail() {
.with_status(101) .with_status(101)
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[UPDATING] `dummy-registry` index [UPDATING] `dummy-registry` index
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[DOWNLOADING] crates ... [DOWNLOADING] crates ...
[DOWNLOADED] testless v0.1.0 (registry `dummy-registry`) [DOWNLOADED] testless v0.1.0 (registry `dummy-registry`)
[ERROR] failed to download replaced source registry `crates-io` [ERROR] failed to download replaced source registry `crates-io`
@ -6017,7 +6005,7 @@ fn no_linkable_target() {
.build(); .build();
p.cargo("build") p.cargo("build")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[WARNING] The package `the_lib` provides no linkable target. The compiler might raise an error while compiling `foo`. Consider adding 'dylib' or 'rlib' to key `crate-type` in `the_lib`'s Cargo.toml. This warning might turn into a hard error in the future. [WARNING] The package `the_lib` provides no linkable target. The compiler might raise an error while compiling `foo`. Consider adding 'dylib' or 'rlib' to key `crate-type` in `the_lib`'s Cargo.toml. This warning might turn into a hard error in the future.
[COMPILING] the_lib v0.1.0 ([ROOT]/foo/the_lib) [COMPILING] the_lib v0.1.0 ([ROOT]/foo/the_lib)
[COMPILING] foo v0.1.0 ([ROOT]/foo) [COMPILING] foo v0.1.0 ([ROOT]/foo)
@ -6173,7 +6161,6 @@ fn target_filters_workspace() {
ws.cargo("build -v --example ex") ws.cargo("build -v --example ex")
.with_status(101) .with_status(101)
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions
[ERROR] no example target named `ex` [ERROR] no example target named `ex`
Did you mean `ex1`? Did you mean `ex1`?
@ -6235,7 +6222,6 @@ fn target_filters_workspace_not_found() {
ws.cargo("build -v --lib") ws.cargo("build -v --lib")
.with_status(101) .with_status(101)
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions
[ERROR] no library targets found in packages: a, b [ERROR] no library targets found in packages: a, b
"#]]) "#]])
@ -6295,7 +6281,7 @@ fn signal_display() {
foo.cargo("build") foo.cargo("build")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] pm v0.1.0 ([ROOT]/foo/pm) [COMPILING] pm v0.1.0 ([ROOT]/foo/pm)
[COMPILING] foo v0.1.0 ([ROOT]/foo) [COMPILING] foo v0.1.0 ([ROOT]/foo)
[ERROR] could not compile `foo` (lib) [ERROR] could not compile `foo` (lib)
@ -6353,7 +6339,7 @@ fn pipelining_works() {
foo.cargo("build") foo.cargo("build")
.with_stdout_data(str![]) .with_stdout_data(str![])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] bar v0.5.0 ([ROOT]/foo/bar) [COMPILING] bar v0.5.0 ([ROOT]/foo/bar)
[COMPILING] foo v0.1.0 ([ROOT]/foo) [COMPILING] foo v0.1.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@ -6418,7 +6404,6 @@ fn pipelining_big_graph() {
.with_status(101) .with_status(101)
.with_stderr_data( .with_stderr_data(
str![[r#" str![[r#"
[LOCKING] 61 packages to latest compatible versions
[COMPILING] a30 v0.5.0 ([ROOT]/foo/a30) [COMPILING] a30 v0.5.0 ([ROOT]/foo/a30)
[ERROR] don't actually build me [ERROR] don't actually build me
... ...
@ -6485,7 +6470,7 @@ b
"#]]) "#]])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] bar v0.1.0 ([ROOT]/foo/bar) [COMPILING] bar v0.1.0 ([ROOT]/foo/bar)
[COMPILING] foo v0.1.0 ([ROOT]/foo) [COMPILING] foo v0.1.0 ([ROOT]/foo)
c c

View File

@ -882,7 +882,7 @@ fn custom_build_script_rustc_flags() {
.build(); .build();
p.cargo("build --verbose").with_stderr_data(str![[r#" p.cargo("build --verbose").with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] foo v0.5.0 ([ROOT]/foo/foo) [COMPILING] foo v0.5.0 ([ROOT]/foo/foo)
[RUNNING] `rustc --crate-name build_script_build --edition=2015 foo/build.rs [..]` [RUNNING] `rustc --crate-name build_script_build --edition=2015 foo/build.rs [..]`
[RUNNING] `[ROOT]/foo/target/debug/build/foo-[HASH]/build-script-build` [RUNNING] `[ROOT]/foo/target/debug/build/foo-[HASH]/build-script-build`
@ -936,7 +936,7 @@ fn custom_build_script_rustc_flags_no_space() {
.build(); .build();
p.cargo("build --verbose").with_stderr_data(str![[r#" p.cargo("build --verbose").with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] foo v0.5.0 ([ROOT]/foo/foo) [COMPILING] foo v0.5.0 ([ROOT]/foo/foo)
[RUNNING] `rustc --crate-name build_script_build --edition=2015 foo/build.rs [..]` [RUNNING] `rustc --crate-name build_script_build --edition=2015 foo/build.rs [..]`
[RUNNING] `[ROOT]/foo/target/debug/build/foo-[HASH]/build-script-build` [RUNNING] `[ROOT]/foo/target/debug/build/foo-[HASH]/build-script-build`
@ -1071,7 +1071,7 @@ fn links_duplicates_old_registry() {
.with_status(101) .with_status(101)
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[UPDATING] `dummy-registry` index [UPDATING] `dummy-registry` index
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[DOWNLOADING] crates ... [DOWNLOADING] crates ...
[DOWNLOADED] bar v0.1.0 (registry `dummy-registry`) [DOWNLOADED] bar v0.1.0 (registry `dummy-registry`)
[ERROR] multiple packages link to native library `a`, but a native library can be linked only once [ERROR] multiple packages link to native library `a`, but a native library can be linked only once
@ -1221,7 +1221,7 @@ fn overrides_and_links() {
p.cargo("build -v") p.cargo("build -v")
.with_stderr_data( .with_stderr_data(
str![[r#" str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] a v0.5.0 ([ROOT]/foo/a) [COMPILING] a v0.5.0 ([ROOT]/foo/a)
[COMPILING] foo v0.5.0 ([ROOT]/foo) [COMPILING] foo v0.5.0 ([ROOT]/foo)
[RUNNING] `rustc --crate-name build_script_build [..]` [RUNNING] `rustc --crate-name build_script_build [..]`
@ -1698,7 +1698,7 @@ fn build_deps_simple() {
.build(); .build();
p.cargo("build -v").with_stderr_data(str![[r#" p.cargo("build -v").with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] a v0.5.0 ([ROOT]/foo/a) [COMPILING] a v0.5.0 ([ROOT]/foo/a)
[RUNNING] `rustc --crate-name a [..]` [RUNNING] `rustc --crate-name a [..]`
[COMPILING] foo v0.5.0 ([ROOT]/foo) [COMPILING] foo v0.5.0 ([ROOT]/foo)
@ -1811,7 +1811,7 @@ fn build_cmd_with_a_build_cmd() {
.build(); .build();
p.cargo("build -v").with_stderr_data(str![[r#" p.cargo("build -v").with_stderr_data(str![[r#"
[LOCKING] 3 packages to latest compatible versions [LOCKING] 2 packages to latest compatible versions
[COMPILING] b v0.5.0 ([ROOT]/foo/b) [COMPILING] b v0.5.0 ([ROOT]/foo/b)
[RUNNING] `rustc --crate-name b [..]` [RUNNING] `rustc --crate-name b [..]`
[COMPILING] a v0.5.0 ([ROOT]/foo/a) [COMPILING] a v0.5.0 ([ROOT]/foo/a)
@ -2980,7 +2980,7 @@ fn flags_go_into_tests() {
p.cargo("test -v --test=foo") p.cargo("test -v --test=foo")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 3 packages to latest compatible versions [LOCKING] 2 packages to latest compatible versions
[COMPILING] a v0.5.0 ([ROOT]/foo/a) [COMPILING] a v0.5.0 ([ROOT]/foo/a)
[RUNNING] `rustc [..] a/build.rs [..]` [RUNNING] `rustc [..] a/build.rs [..]`
[RUNNING] `[ROOT]/foo/target/debug/build/a-[HASH]/build-script-build` [RUNNING] `[ROOT]/foo/target/debug/build/a-[HASH]/build-script-build`
@ -3094,7 +3094,7 @@ fn diamond_passes_args_only_once() {
p.cargo("build -v") p.cargo("build -v")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 4 packages to latest compatible versions [LOCKING] 3 packages to latest compatible versions
[COMPILING] c v0.5.0 ([ROOT]/foo/c) [COMPILING] c v0.5.0 ([ROOT]/foo/c)
[RUNNING] `rustc --crate-name build_script_build [..]` [RUNNING] `rustc --crate-name build_script_build [..]`
[RUNNING] `[ROOT]/foo/target/debug/build/c-[HASH]/build-script-build` [RUNNING] `[ROOT]/foo/target/debug/build/c-[HASH]/build-script-build`
@ -3970,7 +3970,7 @@ fn warnings_hidden_for_upstream() {
p.cargo("build -v") p.cargo("build -v")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[UPDATING] `dummy-registry` index [UPDATING] `dummy-registry` index
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[DOWNLOADING] crates ... [DOWNLOADING] crates ...
[DOWNLOADED] bar v0.1.0 (registry `dummy-registry`) [DOWNLOADED] bar v0.1.0 (registry `dummy-registry`)
[COMPILING] bar v0.1.0 [COMPILING] bar v0.1.0
@ -4031,7 +4031,7 @@ fn warnings_printed_on_vv() {
p.cargo("build -vv") p.cargo("build -vv")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[UPDATING] `dummy-registry` index [UPDATING] `dummy-registry` index
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[DOWNLOADING] crates ... [DOWNLOADING] crates ...
[DOWNLOADED] bar v0.1.0 (registry `dummy-registry`) [DOWNLOADED] bar v0.1.0 (registry `dummy-registry`)
[COMPILING] bar v0.1.0 [COMPILING] bar v0.1.0
@ -4811,7 +4811,7 @@ fn optional_build_dep_and_required_normal_dep() {
"#]]) "#]])
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[COMPILING] bar v0.5.0 ([ROOT]/foo/bar) [COMPILING] bar v0.5.0 ([ROOT]/foo/bar)
[COMPILING] foo v0.1.0 ([ROOT]/foo) [COMPILING] foo v0.1.0 ([ROOT]/foo)
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s

View File

@ -275,7 +275,7 @@ fn link_arg_transitive_not_allowed() {
p.cargo("build -v") p.cargo("build -v")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[UPDATING] `dummy-registry` index [UPDATING] `dummy-registry` index
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[DOWNLOADING] crates ... [DOWNLOADING] crates ...
[DOWNLOADED] bar v1.0.0 (registry `dummy-registry`) [DOWNLOADED] bar v1.0.0 (registry `dummy-registry`)
[COMPILING] bar v1.0.0 [COMPILING] bar v1.0.0

View File

@ -277,7 +277,7 @@ fn very_verbose() {
p.cargo("check -vv") p.cargo("check -vv")
.with_stderr_data(str![[r#" .with_stderr_data(str![[r#"
[UPDATING] `dummy-registry` index [UPDATING] `dummy-registry` index
[LOCKING] 2 packages to latest compatible versions [LOCKING] 1 package to latest compatible version
[DOWNLOADING] crates ... [DOWNLOADING] crates ...
[DOWNLOADED] bar v1.0.0 (registry `dummy-registry`) [DOWNLOADED] bar v1.0.0 (registry `dummy-registry`)
[CHECKING] bar v1.0.0 [CHECKING] bar v1.0.0

View File

@ -22,7 +22,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v99999.0.0 to dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v99999.0.0 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"> <tspan x="10px" y="82px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1014 B

After

Width:  |  Height:  |  Size: 1012 B

View File

@ -24,7 +24,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v99999.0.0 to dependencies</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v99999.0.0 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"> <tspan x="10px" y="100px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -42,7 +42,7 @@
</tspan> </tspan>
<tspan x="10px" y="208px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> serde_test</tspan> <tspan x="10px" y="208px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> serde_test</tspan>
</tspan> </tspan>
<tspan x="10px" y="226px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="226px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="244px"> <tspan x="10px" y="244px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -56,7 +56,7 @@
</tspan> </tspan>
<tspan x="10px" y="334px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> unstable</tspan> <tspan x="10px" y="334px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> unstable</tspan>
</tspan> </tspan>
<tspan x="10px" y="352px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan> <tspan x="10px" y="352px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan> </tspan>
<tspan x="10px" y="370px"> <tspan x="10px" y="370px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -24,7 +24,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-build-package2 v99999.0.0 to build-dependencies</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-build-package2 v99999.0.0 to build-dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"> <tspan x="10px" y="100px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -27,7 +27,7 @@
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> two</tspan> <tspan x="10px" y="82px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> two</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="100px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="118px"> <tspan x="10px" y="118px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -24,7 +24,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `some-package`</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `some-package`</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"> <tspan x="10px" y="100px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -28,7 +28,7 @@
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan> </tspan><tspan class="fg-green bold">+</tspan><tspan> feature-two</tspan> <tspan x="10px" y="100px"><tspan> </tspan><tspan class="fg-green bold">+</tspan><tspan> feature-two</tspan>
</tspan> </tspan>
<tspan x="10px" y="118px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="118px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="136px"> <tspan x="10px" y="136px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -26,7 +26,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v0.4.1 to dependencies</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v0.4.1 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package2 v0.4.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan> <tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package2 v0.4.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1,4 +1,4 @@
<svg width="740px" height="74px" xmlns="http://www.w3.org/2000/svg"> <svg width="740px" height="56px" xmlns="http://www.w3.org/2000/svg">
<style> <style>
.fg { fill: #AAAAAA } .fg { fill: #AAAAAA }
.bg { background: #000000 } .bg { background: #000000 }
@ -20,9 +20,7 @@
<text xml:space="preserve" class="container fg"> <text xml:space="preserve" class="container fg">
<tspan x="10px" y="28px"><tspan class="fg-green bold"> Adding</tspan><tspan> foo (workspace) to dependencies</tspan> <tspan x="10px" y="28px"><tspan class="fg-green bold"> Adding</tspan><tspan> foo (workspace) to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="46px">
</tspan>
<tspan x="10px" y="64px">
</tspan> </tspan>
</text> </text>

Before

Width:  |  Height:  |  Size: 882 B

After

Width:  |  Height:  |  Size: 738 B

View File

@ -1,4 +1,4 @@
<svg width="740px" height="236px" xmlns="http://www.w3.org/2000/svg"> <svg width="740px" height="218px" xmlns="http://www.w3.org/2000/svg">
<style> <style>
.fg { fill: #AAAAAA } .fg { fill: #AAAAAA }
.bg { background: #000000 } .bg { background: #000000 }
@ -39,9 +39,7 @@
</tspan> </tspan>
<tspan x="10px" y="190px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> unrelated</tspan> <tspan x="10px" y="190px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> unrelated</tspan>
</tspan> </tspan>
<tspan x="10px" y="208px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="208px">
</tspan>
<tspan x="10px" y="226px">
</tspan> </tspan>
</text> </text>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1,4 +1,4 @@
<svg width="740px" height="92px" xmlns="http://www.w3.org/2000/svg"> <svg width="740px" height="74px" xmlns="http://www.w3.org/2000/svg">
<style> <style>
.fg { fill: #AAAAAA } .fg { fill: #AAAAAA }
.bg { background: #000000 } .bg { background: #000000 }
@ -22,9 +22,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `foo`</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `foo`</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="64px">
</tspan>
<tspan x="10px" y="82px">
</tspan> </tspan>
</text> </text>

Before

Width:  |  Height:  |  Size: 1008 B

After

Width:  |  Height:  |  Size: 864 B

View File

@ -1,4 +1,4 @@
<svg width="740px" height="74px" xmlns="http://www.w3.org/2000/svg"> <svg width="740px" height="56px" xmlns="http://www.w3.org/2000/svg">
<style> <style>
.fg { fill: #AAAAAA } .fg { fill: #AAAAAA }
.bg { background: #000000 } .bg { background: #000000 }
@ -20,9 +20,7 @@
<text xml:space="preserve" class="container fg"> <text xml:space="preserve" class="container fg">
<tspan x="10px" y="28px"><tspan class="fg-green bold"> Adding</tspan><tspan> foo (workspace) to public dependencies</tspan> <tspan x="10px" y="28px"><tspan class="fg-green bold"> Adding</tspan><tspan> foo (workspace) to public dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="46px">
</tspan>
<tspan x="10px" y="64px">
</tspan> </tspan>
</text> </text>

Before

Width:  |  Height:  |  Size: 889 B

After

Width:  |  Height:  |  Size: 745 B

View File

@ -24,7 +24,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-dev-package2 v99999.0.0 to dev-dependencies</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-dev-package2 v99999.0.0 to dev-dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"> <tspan x="10px" y="100px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -27,7 +27,7 @@
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> two</tspan> <tspan x="10px" y="82px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> two</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="100px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="118px"> <tspan x="10px" y="118px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -33,7 +33,7 @@
</tspan> </tspan>
<tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> nose</tspan> <tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> nose</tspan>
</tspan> </tspan>
<tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="172px"> <tspan x="10px" y="172px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -28,7 +28,7 @@
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan> 100 deactivated features</tspan> <tspan x="10px" y="100px"><tspan> 100 deactivated features</tspan>
</tspan> </tspan>
<tspan x="10px" y="118px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="118px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="136px"> <tspan x="10px" y="136px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -86,7 +86,7 @@
</tspan> </tspan>
<tspan x="10px" y="622px"><tspan> 170 deactivated features</tspan> <tspan x="10px" y="622px"><tspan> 170 deactivated features</tspan>
</tspan> </tspan>
<tspan x="10px" y="640px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="640px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="658px"> <tspan x="10px" y="658px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -33,7 +33,7 @@
</tspan> </tspan>
<tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> nose</tspan> <tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> nose</tspan>
</tspan> </tspan>
<tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="172px"> <tspan x="10px" y="172px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -33,7 +33,7 @@
</tspan> </tspan>
<tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> mouth</tspan> <tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> mouth</tspan>
</tspan> </tspan>
<tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="172px"> <tspan x="10px" y="172px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -33,7 +33,7 @@
</tspan> </tspan>
<tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> nose</tspan> <tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> nose</tspan>
</tspan> </tspan>
<tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="172px"> <tspan x="10px" y="172px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -33,7 +33,7 @@
</tspan> </tspan>
<tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> mouth</tspan> <tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> mouth</tspan>
</tspan> </tspan>
<tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="172px"> <tspan x="10px" y="172px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -24,7 +24,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Updating</tspan><tspan> git repository `[ROOTURL]/git-package`</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Updating</tspan><tspan> git repository `[ROOTURL]/git-package`</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"> <tspan x="10px" y="100px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -24,7 +24,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Updating</tspan><tspan> git repository `[ROOTURL]/git-package`</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Updating</tspan><tspan> git repository `[ROOTURL]/git-package`</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"> <tspan x="10px" y="100px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -24,7 +24,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Updating</tspan><tspan> git repository `[ROOTURL]/git-package`</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Updating</tspan><tspan> git repository `[ROOTURL]/git-package`</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"> <tspan x="10px" y="100px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -26,7 +26,7 @@
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Updating</tspan><tspan> git repository `[ROOTURL]/git-package`</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Updating</tspan><tspan> git repository `[ROOTURL]/git-package`</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="100px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="118px"> <tspan x="10px" y="118px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -26,7 +26,7 @@
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Updating</tspan><tspan> git repository `[ROOTURL]/git-package`</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Updating</tspan><tspan> git repository `[ROOTURL]/git-package`</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan> <tspan x="10px" y="100px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan> </tspan>
<tspan x="10px" y="118px"> <tspan x="10px" y="118px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -28,7 +28,7 @@
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-green bold"> Updating</tspan><tspan> git repository `[ROOTURL]/git-package`</tspan> <tspan x="10px" y="100px"><tspan class="fg-green bold"> Updating</tspan><tspan> git repository `[ROOTURL]/git-package`</tspan>
</tspan> </tspan>
<tspan x="10px" y="118px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="118px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="136px"> <tspan x="10px" y="136px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -24,7 +24,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Updating</tspan><tspan> git repository `[ROOTURL]/git-package`</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Updating</tspan><tspan> git repository `[ROOTURL]/git-package`</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"> <tspan x="10px" y="100px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -24,7 +24,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Updating</tspan><tspan> git repository `[ROOTURL]/git-package`</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Updating</tspan><tspan> git repository `[ROOTURL]/git-package`</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"> <tspan x="10px" y="100px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -22,7 +22,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> prerelease_only v0.2.0-alpha.1 to dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> prerelease_only v0.2.0-alpha.1 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"> <tspan x="10px" y="82px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1023 B

After

Width:  |  Height:  |  Size: 1021 B

View File

@ -33,7 +33,7 @@
</tspan> </tspan>
<tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> nose</tspan> <tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> nose</tspan>
</tspan> </tspan>
<tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="172px"> <tspan x="10px" y="172px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -35,7 +35,7 @@
</tspan> </tspan>
<tspan x="10px" y="136px"><tspan class="fg-green bold"> Updating</tspan><tspan> `dummy-registry` index</tspan> <tspan x="10px" y="136px"><tspan class="fg-green bold"> Updating</tspan><tspan> `dummy-registry` index</tspan>
</tspan> </tspan>
<tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 4 packages to latest compatible versions</tspan> <tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="172px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package v0.1.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan> <tspan x="10px" y="172px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package v0.1.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -35,7 +35,7 @@
</tspan> </tspan>
<tspan x="10px" y="136px"><tspan class="fg-green bold"> Updating</tspan><tspan> `dummy-registry` index</tspan> <tspan x="10px" y="136px"><tspan class="fg-green bold"> Updating</tspan><tspan> `dummy-registry` index</tspan>
</tspan> </tspan>
<tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 4 packages to latest compatible versions</tspan> <tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="172px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package v0.1.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan> <tspan x="10px" y="172px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package v0.1.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -1,4 +1,4 @@
<svg width="740px" height="74px" xmlns="http://www.w3.org/2000/svg"> <svg width="740px" height="56px" xmlns="http://www.w3.org/2000/svg">
<style> <style>
.fg { fill: #AAAAAA } .fg { fill: #AAAAAA }
.bg { background: #000000 } .bg { background: #000000 }
@ -20,9 +20,7 @@
<text xml:space="preserve" class="container fg"> <text xml:space="preserve" class="container fg">
<tspan x="10px" y="28px"><tspan class="fg-green bold"> Adding</tspan><tspan> cargo-list-test-fixture-dependency (local) to dependencies</tspan> <tspan x="10px" y="28px"><tspan class="fg-green bold"> Adding</tspan><tspan> cargo-list-test-fixture-dependency (local) to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="46px">
</tspan>
<tspan x="10px" y="64px">
</tspan> </tspan>
</text> </text>

Before

Width:  |  Height:  |  Size: 909 B

After

Width:  |  Height:  |  Size: 765 B

View File

@ -1,4 +1,4 @@
<svg width="740px" height="236px" xmlns="http://www.w3.org/2000/svg"> <svg width="740px" height="218px" xmlns="http://www.w3.org/2000/svg">
<style> <style>
.fg { fill: #AAAAAA } .fg { fill: #AAAAAA }
.bg { background: #000000 } .bg { background: #000000 }
@ -39,9 +39,7 @@
</tspan> </tspan>
<tspan x="10px" y="190px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> unrelated</tspan> <tspan x="10px" y="190px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> unrelated</tspan>
</tspan> </tspan>
<tspan x="10px" y="208px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="208px">
</tspan>
<tspan x="10px" y="226px">
</tspan> </tspan>
</text> </text>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -28,7 +28,7 @@
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v99999.0.0 to dependencies</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v99999.0.0 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-green bold"> Locking</tspan><tspan> 4 packages to latest compatible versions</tspan> <tspan x="10px" y="100px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan>
</tspan> </tspan>
<tspan x="10px" y="118px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package2 v0.2.3+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan> <tspan x="10px" y="118px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package2 v0.2.3+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -26,7 +26,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v0.4.1 to dependencies</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v0.4.1 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package2 v0.4.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan> <tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package2 v0.4.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -22,7 +22,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v0.1.0 to dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v0.1.0 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"> <tspan x="10px" y="82px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1010 B

After

Width:  |  Height:  |  Size: 1008 B

View File

@ -22,7 +22,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v0.1.0 to dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v0.1.0 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"> <tspan x="10px" y="82px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1010 B

After

Width:  |  Height:  |  Size: 1008 B

View File

@ -24,7 +24,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `my-package`</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `my-package`</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"> <tspan x="10px" y="100px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -26,7 +26,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v0.4.1 to dependencies</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v0.4.1 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package2 v0.4.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan> <tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package2 v0.4.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -26,7 +26,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v0.4.1 to dependencies</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v0.4.1 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package2 v0.4.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan> <tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package2 v0.4.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -33,7 +33,7 @@
</tspan> </tspan>
<tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> mouth</tspan> <tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> mouth</tspan>
</tspan> </tspan>
<tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="172px"> <tspan x="10px" y="172px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -22,7 +22,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `cargo-list-test-fixture-dependency`</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `cargo-list-test-fixture-dependency`</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"> <tspan x="10px" y="82px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -1,4 +1,4 @@
<svg width="740px" height="110px" xmlns="http://www.w3.org/2000/svg"> <svg width="740px" height="92px" xmlns="http://www.w3.org/2000/svg">
<style> <style>
.fg { fill: #AAAAAA } .fg { fill: #AAAAAA }
.bg { background: #000000 } .bg { background: #000000 }
@ -24,9 +24,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan> </tspan><tspan class="fg-green bold">+</tspan><tspan> test</tspan> <tspan x="10px" y="64px"><tspan> </tspan><tspan class="fg-green bold">+</tspan><tspan> test</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="82px">
</tspan>
<tspan x="10px" y="100px">
</tspan> </tspan>
</text> </text>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 952 B

View File

@ -1,4 +1,4 @@
<svg width="740px" height="74px" xmlns="http://www.w3.org/2000/svg"> <svg width="740px" height="56px" xmlns="http://www.w3.org/2000/svg">
<style> <style>
.fg { fill: #AAAAAA } .fg { fill: #AAAAAA }
.bg { background: #000000 } .bg { background: #000000 }
@ -20,9 +20,7 @@
<text xml:space="preserve" class="container fg"> <text xml:space="preserve" class="container fg">
<tspan x="10px" y="28px"><tspan class="fg-green bold"> Adding</tspan><tspan> foo (workspace) to dependencies</tspan> <tspan x="10px" y="28px"><tspan class="fg-green bold"> Adding</tspan><tspan> foo (workspace) to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="46px">
</tspan>
<tspan x="10px" y="64px">
</tspan> </tspan>
</text> </text>

Before

Width:  |  Height:  |  Size: 882 B

After

Width:  |  Height:  |  Size: 738 B

View File

@ -1,4 +1,4 @@
<svg width="740px" height="92px" xmlns="http://www.w3.org/2000/svg"> <svg width="740px" height="74px" xmlns="http://www.w3.org/2000/svg">
<style> <style>
.fg { fill: #AAAAAA } .fg { fill: #AAAAAA }
.bg { background: #000000 } .bg { background: #000000 }
@ -22,9 +22,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `foo`</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `foo`</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="64px">
</tspan>
<tspan x="10px" y="82px">
</tspan> </tspan>
</text> </text>

Before

Width:  |  Height:  |  Size: 1008 B

After

Width:  |  Height:  |  Size: 864 B

View File

@ -34,7 +34,7 @@
</tspan> </tspan>
<tspan x="10px" y="154px"><tspan> </tspan><tspan class="fg-green bold">+</tspan><tspan> nose</tspan> <tspan x="10px" y="154px"><tspan> </tspan><tspan class="fg-green bold">+</tspan><tspan> nose</tspan>
</tspan> </tspan>
<tspan x="10px" y="172px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan> <tspan x="10px" y="172px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan> </tspan>
<tspan x="10px" y="190px"> <tspan x="10px" y="190px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -26,7 +26,7 @@
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan> </tspan><tspan class="fg-green bold">+</tspan><tspan> nose</tspan> <tspan x="10px" y="82px"><tspan> </tspan><tspan class="fg-green bold">+</tspan><tspan> nose</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="100px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="118px"> <tspan x="10px" y="118px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -28,7 +28,7 @@
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `your-face`</tspan> <tspan x="10px" y="100px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `your-face`</tspan>
</tspan> </tspan>
<tspan x="10px" y="118px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="118px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="136px"> <tspan x="10px" y="136px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -26,7 +26,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v0.4.1 to dependencies</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v0.4.1 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package2 v0.4.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan> <tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package2 v0.4.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -26,7 +26,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v0.4.1 to dependencies</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v0.4.1 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package2 v0.4.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan> <tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package2 v0.4.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -22,7 +22,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v0.1.0 to dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v0.1.0 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"> <tspan x="10px" y="82px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1010 B

After

Width:  |  Height:  |  Size: 1008 B

View File

@ -24,7 +24,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `my-package`</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `my-package`</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"> <tspan x="10px" y="100px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -22,7 +22,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v0.1.0 to dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v0.1.0 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"> <tspan x="10px" y="82px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1010 B

After

Width:  |  Height:  |  Size: 1008 B

View File

@ -22,7 +22,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v0.1.0 to public dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v0.1.0 to public dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"> <tspan x="10px" y="82px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1017 B

After

Width:  |  Height:  |  Size: 1015 B

View File

@ -24,7 +24,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `my-package`</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `my-package`</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"> <tspan x="10px" y="100px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -33,7 +33,7 @@
</tspan> </tspan>
<tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> nose</tspan> <tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> nose</tspan>
</tspan> </tspan>
<tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="172px"> <tspan x="10px" y="172px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -22,7 +22,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package1 v99999.0.0 to optional dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package1 v99999.0.0 to optional dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"> <tspan x="10px" y="82px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1022 B

View File

@ -28,7 +28,7 @@
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `your-face`</tspan> <tspan x="10px" y="100px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `your-face`</tspan>
</tspan> </tspan>
<tspan x="10px" y="118px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="118px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="136px"> <tspan x="10px" y="136px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -26,7 +26,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `cargo-list-test-fixture-dependency`</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `cargo-list-test-fixture-dependency`</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> cargo-list-test-fixture-dependency v20.0.0+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan> <tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> cargo-list-test-fixture-dependency v20.0.0+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -33,7 +33,7 @@
</tspan> </tspan>
<tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> mouth</tspan> <tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> mouth</tspan>
</tspan> </tspan>
<tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="172px"> <tspan x="10px" y="172px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -22,7 +22,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v0.1.0 to public dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v0.1.0 to public dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"> <tspan x="10px" y="82px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1017 B

After

Width:  |  Height:  |  Size: 1015 B

View File

@ -22,7 +22,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v0.1.0 to dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v0.1.0 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"> <tspan x="10px" y="82px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1010 B

After

Width:  |  Height:  |  Size: 1008 B

View File

@ -24,7 +24,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> versioned-package v99999.0.0 to dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> versioned-package v99999.0.0 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> versioned-package v0.1.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan> <tspan x="10px" y="82px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> versioned-package v0.1.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -24,7 +24,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> versioned-package v99999.0.0 to dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> versioned-package v99999.0.0 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> versioned-package v0.1.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan> <tspan x="10px" y="82px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> versioned-package v0.1.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -26,7 +26,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `a1`</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `a1`</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> versioned-package v0.1.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan> <tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> versioned-package v0.1.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -26,7 +26,7 @@
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Updating</tspan><tspan> git repository `[ROOTURL]/versioned-package`</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Updating</tspan><tspan> git repository `[ROOTURL]/versioned-package`</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="100px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="118px"> <tspan x="10px" y="118px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -22,7 +22,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `cargo-list-test-fixture-dependency`</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `cargo-list-test-fixture-dependency`</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"> <tspan x="10px" y="82px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -24,7 +24,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> versioned-package v99999.0.0 to dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> versioned-package v99999.0.0 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> versioned-package v0.1.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan> <tspan x="10px" y="82px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> versioned-package v0.1.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1,4 +1,4 @@
<svg width="740px" height="74px" xmlns="http://www.w3.org/2000/svg"> <svg width="740px" height="56px" xmlns="http://www.w3.org/2000/svg">
<style> <style>
.fg { fill: #AAAAAA } .fg { fill: #AAAAAA }
.bg { background: #000000 } .bg { background: #000000 }
@ -20,9 +20,7 @@
<text xml:space="preserve" class="container fg"> <text xml:space="preserve" class="container fg">
<tspan x="10px" y="28px"><tspan class="fg-green bold"> Adding</tspan><tspan> foo (local) to dependencies</tspan> <tspan x="10px" y="28px"><tspan class="fg-green bold"> Adding</tspan><tspan> foo (local) to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="46px">
</tspan>
<tspan x="10px" y="64px">
</tspan> </tspan>
</text> </text>

Before

Width:  |  Height:  |  Size: 878 B

After

Width:  |  Height:  |  Size: 734 B

View File

@ -1,4 +1,4 @@
<svg width="740px" height="236px" xmlns="http://www.w3.org/2000/svg"> <svg width="740px" height="218px" xmlns="http://www.w3.org/2000/svg">
<style> <style>
.fg { fill: #AAAAAA } .fg { fill: #AAAAAA }
.bg { background: #000000 } .bg { background: #000000 }
@ -39,9 +39,7 @@
</tspan> </tspan>
<tspan x="10px" y="190px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> unrelated</tspan> <tspan x="10px" y="190px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> unrelated</tspan>
</tspan> </tspan>
<tspan x="10px" y="208px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="208px">
</tspan>
<tspan x="10px" y="226px">
</tspan> </tspan>
</text> </text>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -20,7 +20,7 @@
<text xml:space="preserve" class="container fg"> <text xml:space="preserve" class="container fg">
<tspan x="10px" y="28px"><tspan class="fg-green bold"> Adding</tspan><tspan> cargo-list-test-fixture-dependency (local) to dependencies</tspan> <tspan x="10px" y="28px"><tspan class="fg-green bold"> Adding</tspan><tspan> cargo-list-test-fixture-dependency (local) to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"> <tspan x="10px" y="64px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 909 B

After

Width:  |  Height:  |  Size: 907 B

View File

@ -20,7 +20,7 @@
<text xml:space="preserve" class="container fg"> <text xml:space="preserve" class="container fg">
<tspan x="10px" y="28px"><tspan class="fg-green bold"> Adding</tspan><tspan> cargo-list-test-fixture-dependency (local) to dev-dependencies</tspan> <tspan x="10px" y="28px"><tspan class="fg-green bold"> Adding</tspan><tspan> cargo-list-test-fixture-dependency (local) to dev-dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"> <tspan x="10px" y="64px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 913 B

After

Width:  |  Height:  |  Size: 911 B

View File

@ -20,7 +20,7 @@
<text xml:space="preserve" class="container fg"> <text xml:space="preserve" class="container fg">
<tspan x="10px" y="28px"><tspan class="fg-green bold"> Adding</tspan><tspan> cargo-list-test-fixture-dependency (local) to dependencies</tspan> <tspan x="10px" y="28px"><tspan class="fg-green bold"> Adding</tspan><tspan> cargo-list-test-fixture-dependency (local) to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"> <tspan x="10px" y="64px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 909 B

After

Width:  |  Height:  |  Size: 907 B

View File

@ -33,7 +33,7 @@
</tspan> </tspan>
<tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> nose</tspan> <tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> nose</tspan>
</tspan> </tspan>
<tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="172px"> <tspan x="10px" y="172px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -34,7 +34,7 @@
</tspan> </tspan>
<tspan x="10px" y="154px"><tspan> </tspan><tspan class="fg-green bold">+</tspan><tspan> e</tspan> <tspan x="10px" y="154px"><tspan> </tspan><tspan class="fg-green bold">+</tspan><tspan> e</tspan>
</tspan> </tspan>
<tspan x="10px" y="172px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="172px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="190px"> <tspan x="10px" y="190px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -33,7 +33,7 @@
</tspan> </tspan>
<tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> nose</tspan> <tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> nose</tspan>
</tspan> </tspan>
<tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="172px"> <tspan x="10px" y="172px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -34,7 +34,7 @@
</tspan> </tspan>
<tspan x="10px" y="154px"><tspan> </tspan><tspan class="fg-green bold">+</tspan><tspan> e</tspan> <tspan x="10px" y="154px"><tspan> </tspan><tspan class="fg-green bold">+</tspan><tspan> e</tspan>
</tspan> </tspan>
<tspan x="10px" y="172px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="172px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="190px"> <tspan x="10px" y="190px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -24,7 +24,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> toml v99999.0.0 to dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> toml v99999.0.0 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 4 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package v0.1.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan> <tspan x="10px" y="82px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package v0.1.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -24,7 +24,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> toml v99999.0.0 to dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> toml v99999.0.0 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 4 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package v0.1.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan> <tspan x="10px" y="82px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> my-package v0.1.1+my-package </tspan><tspan class="fg-yellow bold">(latest: v99999.0.0+my-package)</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -22,7 +22,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v0.1.0 to public dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v0.1.0 to public dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"> <tspan x="10px" y="82px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1017 B

After

Width:  |  Height:  |  Size: 1015 B

View File

@ -24,7 +24,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v99999.0.0 to dependencies</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v99999.0.0 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"> <tspan x="10px" y="100px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -22,7 +22,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v99999.0.0 to dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v99999.0.0 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"> <tspan x="10px" y="82px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1014 B

After

Width:  |  Height:  |  Size: 1012 B

View File

@ -33,7 +33,7 @@
</tspan> </tspan>
<tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> nose</tspan> <tspan x="10px" y="136px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> nose</tspan>
</tspan> </tspan>
<tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="172px"> <tspan x="10px" y="172px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -22,7 +22,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> rust-version-user v0.2.1 to dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> rust-version-user v0.2.1 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"> <tspan x="10px" y="82px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1017 B

After

Width:  |  Height:  |  Size: 1015 B

View File

@ -22,7 +22,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> rust-version-user v0.2.1 to dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> rust-version-user v0.2.1 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest Rust 1.72 compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest Rust 1.72 compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"> <tspan x="10px" y="82px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -26,7 +26,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> rust-version-user v0.1.0 to dependencies</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> rust-version-user v0.1.0 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest Rust 1.70 compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest Rust 1.70 compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> rust-version-user v0.1.0 </tspan><tspan class="fg-yellow bold">(latest: v0.2.1)</tspan> <tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> rust-version-user v0.1.0 </tspan><tspan class="fg-yellow bold">(latest: v0.2.1)</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -22,7 +22,7 @@
</tspan> </tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> rust-version-user v0.2.1 to dependencies</tspan> <tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> rust-version-user v0.2.1 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"> <tspan x="10px" y="82px">
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1017 B

After

Width:  |  Height:  |  Size: 1015 B

View File

@ -1,4 +1,4 @@
<svg width="953px" height="128px" xmlns="http://www.w3.org/2000/svg"> <svg width="1020px" height="128px" xmlns="http://www.w3.org/2000/svg">
<style> <style>
.fg { fill: #AAAAAA } .fg { fill: #AAAAAA }
.bg { background: #000000 } .bg { background: #000000 }
@ -26,7 +26,7 @@
</tspan> </tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> rust-version-user v0.1.1 to dependencies</tspan> <tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> rust-version-user v0.1.1 to dependencies</tspan>
</tspan> </tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest Rust [..] compatible versions</tspan> <tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 1 package to latest Rust [..] compatible version</tspan>
</tspan> </tspan>
<tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> rust-version-user v0.1.1 </tspan><tspan class="fg-yellow bold">(latest: v0.2.1)</tspan> <tspan x="10px" y="100px"><tspan class="fg-cyan bold"> Adding</tspan><tspan> rust-version-user v0.1.1 </tspan><tspan class="fg-yellow bold">(latest: v0.2.1)</tspan>
</tspan> </tspan>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

Some files were not shown because too many files have changed in this diff Show More