feat(resolve): Tell the user the style of resovle done

This is to help with #9930

Example changes:
```diff
-[LOCKING] 4 packages
+[LOCKING] 4 packages to latest version
-[LOCKING] 2 packages
+[LOCKING] 2 packages to latest Rust 1.60.0 compatible versions
-[LOCKING] 2 packages
+[LOCKING] 2 packages to earliest versions
```

Benefits
- The package count is of "added" packages and this makes that more
  logically clear
- This gives users transparency into what is happening, especially with
  - what rust-version is use
  - the transition to this feature in the new edition
  - whether the planned config was applied or not (as I don't want it to
    require an MSRV bump)
- Will make it easier in tests to show what changed
- Provides more motiviation to show this message in `cargo update` and
  `cargo install` (that will be explored in a follow up PR)

This does come at the cost of more verbose output but hopefully not too
verbose.  This is why I left off other factors, like avoid-dev-deps.
This commit is contained in:
Ed Page 2024-04-13 20:36:06 -05:00
parent 2ff60a5fc2
commit 1876326b6b
164 changed files with 544 additions and 514 deletions

View File

@ -484,10 +484,36 @@ fn print_lockfile_updates(
}
fn status_locking(ws: &Workspace<'_>, num_pkgs: usize) -> CargoResult<()> {
use std::fmt::Write as _;
let plural = if num_pkgs == 1 { "" } else { "s" };
let mut cfg = String::new();
// Don't have a good way to describe `direct_minimal_versions` atm
if !ws.gctx().cli_unstable().direct_minimal_versions {
write!(&mut cfg, " to")?;
if ws.gctx().cli_unstable().minimal_versions {
write!(&mut cfg, " earliest")?;
} else {
write!(&mut cfg, " latest")?;
}
if ws.resolve_honors_rust_version() {
let rust_version = if let Some(ver) = ws.rust_version() {
ver.clone().into_partial()
} else {
let rustc = ws.gctx().load_global_rustc(Some(ws))?;
let rustc_version = rustc.version.clone().into();
rustc_version
};
write!(&mut cfg, " Rust {rust_version}")?;
}
write!(&mut cfg, " compatible version{plural}")?;
}
ws.gctx()
.shell()
.status("Locking", format!("{num_pkgs} package{plural}"))?;
.status("Locking", format!("{num_pkgs} package{plural}{cfg}"))?;
Ok(())
}

View File

@ -33,7 +33,7 @@ fn depend_on_alt_registry() {
.with_stderr(
"\
[UPDATING] `alternative` index
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[DOWNLOADING] crates ...
[DOWNLOADED] 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() {
.with_stderr(
"\
[UPDATING] `alternative` index
[LOCKING] 3 packages
[LOCKING] 3 packages to latest compatible versions
[DOWNLOADING] crates ...
[DOWNLOADED] [..] v0.0.1 (registry `alternative`)
[DOWNLOADED] [..] v0.0.1 (registry `alternative`)
@ -132,7 +132,7 @@ fn depend_on_alt_registry_depends_on_same_registry() {
.with_stderr(
"\
[UPDATING] `alternative` index
[LOCKING] 3 packages
[LOCKING] 3 packages to latest compatible versions
[DOWNLOADING] crates ...
[DOWNLOADED] [..] v0.0.1 (registry `alternative`)
[DOWNLOADED] [..] v0.0.1 (registry `alternative`)
@ -177,7 +177,7 @@ fn depend_on_alt_registry_depends_on_crates_io() {
"\
[UPDATING] `alternative` index
[UPDATING] `dummy-registry` index
[LOCKING] 3 packages
[LOCKING] 3 packages to latest compatible versions
[DOWNLOADING] crates ...
[DOWNLOADED] baz v0.0.1 (registry `dummy-registry`)
[DOWNLOADED] bar v0.0.1 (registry `alternative`)
@ -217,7 +217,7 @@ fn registry_and_path_dep_works() {
p.cargo("check")
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[CHECKING] bar v0.0.1 ([CWD]/bar)
[CHECKING] foo v0.0.1 ([CWD])
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]s
@ -421,7 +421,7 @@ fn alt_registry_and_crates_io_deps() {
"\
[UPDATING] `alternative` index
[UPDATING] `dummy-registry` index
[LOCKING] 3 packages
[LOCKING] 3 packages to latest compatible versions
[DOWNLOADING] crates ...
[DOWNLOADED] crates_io_dep v0.0.1 (registry `dummy-registry`)
[DOWNLOADED] alt_reg_dep v0.1.0 (registry `alternative`)
@ -698,7 +698,7 @@ fn patch_alt_reg() {
.with_stderr(
"\
[UPDATING] `alternative` index
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[CHECKING] bar v0.1.0 ([CWD]/bar)
[CHECKING] foo v0.0.1 ([CWD])
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]
@ -791,7 +791,7 @@ fn no_api() {
.with_stderr(
"\
[UPDATING] `alternative` index
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[DOWNLOADING] crates ...
[DOWNLOADED] bar v0.0.1 (registry `alternative`)
[CHECKING] bar v0.0.1 (registry `alternative`)
@ -1354,7 +1354,7 @@ fn registries_index_relative_url() {
.with_stderr(
"\
[UPDATING] `relative` index
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[DOWNLOADING] crates ...
[DOWNLOADED] bar v0.0.1 (registry `relative`)
[CHECKING] bar v0.0.1 (registry `relative`)

View File

@ -213,7 +213,7 @@ fn disallow_artifact_and_no_artifact_dep_to_same_package_within_the_same_dep_cat
.masquerade_as_nightly_cargo(&["bindeps"])
.with_status(101)
.with_stderr("\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[WARNING] foo v0.0.0 ([CWD]) ignoring invalid dependency `bar_stable` which is missing a lib target
[ERROR] the crate `foo v0.0.0 ([CWD])` depends on crate `bar v0.5.0 ([CWD]/bar)` multiple times with different names",
)
@ -323,7 +323,7 @@ fn features_are_unified_among_lib_and_bin_dep_of_same_target() {
.masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr(
"\
[LOCKING] 3 packages
[LOCKING] 3 packages to latest compatible versions
[COMPILING] d2 v0.0.1 ([CWD]/d2)
[COMPILING] d1 v0.0.1 ([CWD]/d1)
[COMPILING] foo v0.0.1 ([CWD])
@ -775,7 +775,7 @@ fn build_script_with_selected_dashed_bin_artifact_and_lib_true() {
.masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar-baz v0.5.0 ([CWD]/bar)
[COMPILING] foo [..]
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]",
@ -877,7 +877,7 @@ fn lib_with_selected_dashed_bin_artifact_and_lib_true() {
.masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar-baz v0.5.0 ([CWD]/bar)
[COMPILING] foo [..]
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]",
@ -998,7 +998,7 @@ fn disallow_using_example_binaries_as_artifacts() {
.with_status(101)
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[ERROR] dependency `bar` in package `foo` requires a `bin:one-example` artifact to be present.",
)
.run();
@ -1169,7 +1169,7 @@ fn build_script_deps_adopt_do_not_allow_multiple_targets_under_different_name_an
.with_status(101)
.with_stderr(format!(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
error: the crate `foo v0.0.0 ([CWD])` depends on crate `bar v0.5.0 ([CWD]/bar)` multiple times with different names",
))
.run();
@ -1274,7 +1274,7 @@ fn no_cross_doctests_works_with_artifacts() {
.masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr(&format!(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar v0.5.0 ([CWD]/bar)
[COMPILING] foo v0.0.1 ([CWD])
[FINISHED] `test` profile [unoptimized + debuginfo] target(s) in [..]
@ -1757,7 +1757,7 @@ fn allow_artifact_and_non_artifact_dependency_to_same_crate_if_these_are_not_the
.masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar [..]
[COMPILING] foo [..]
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]
@ -1794,7 +1794,7 @@ fn prevent_no_lib_warning_with_artifact_dependencies() {
.masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr(
"\
[LOCKING] 2 packages\n\
[LOCKING] 2 packages to latest compatible versions\n\
[COMPILING] bar v0.5.0 ([CWD]/bar)\n\
[CHECKING] foo v0.0.0 ([CWD])\n\
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]",
@ -1895,7 +1895,7 @@ fn check_missing_crate_type_in_package_fails() {
.with_status(101)
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[ERROR] dependency `bar` in package `foo` requires a `[..]` artifact to be present.",
)
.run();
@ -2042,7 +2042,7 @@ fn env_vars_and_build_products_for_various_build_targets() {
.masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar [..]
[COMPILING] foo [..]
[FINISHED] `test` profile [unoptimized + debuginfo] target(s) in [..]
@ -2219,7 +2219,7 @@ fn doc_lib_true() {
.masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar v0.0.1 ([CWD]/bar)
[DOCUMENTING] bar v0.0.1 ([CWD]/bar)
[DOCUMENTING] foo v0.0.1 ([CWD])
@ -2302,7 +2302,7 @@ fn rustdoc_works_on_libs_with_artifacts_and_lib_false() {
.masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar v0.5.0 ([CWD]/bar)
[DOCUMENTING] foo v0.0.1 ([CWD])
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]
@ -2510,7 +2510,7 @@ fn calc_bin_artifact_fingerprint() {
.masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar v0.5.0 ([CWD]/bar)
[CHECKING] foo v0.1.0 ([CWD])
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]
@ -2592,7 +2592,7 @@ fn with_target_and_optional() {
.masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] d1 v0.0.1 [..]
[RUNNING] `rustc --crate-name d1 [..]--crate-type bin[..]
[CHECKING] foo v0.0.1 [..]
@ -2642,7 +2642,7 @@ fn with_assumed_host_target_and_optional_build_dep() {
.masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_unordered(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] foo v0.0.1 ([CWD])
[COMPILING] d1 v0.0.1 ([CWD]/d1)
[RUNNING] `rustc --crate-name build_script_build --edition=2021 [..]--crate-type bin[..]
@ -2770,7 +2770,7 @@ fn decouple_same_target_transitive_dep_from_artifact_dep() {
.masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr(
"\
[LOCKING] 5 packages
[LOCKING] 5 packages to latest compatible versions
[COMPILING] c v0.1.0 ([CWD]/c)
[COMPILING] b v0.1.0 ([CWD]/b)
[COMPILING] a v0.1.0 ([CWD]/a)
@ -2874,7 +2874,7 @@ fn decouple_same_target_transitive_dep_from_artifact_dep_lib() {
.masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr(
"\
[LOCKING] 4 packages
[LOCKING] 4 packages to latest compatible versions
[COMPILING] b v0.1.0 ([CWD]/b)
[COMPILING] a v0.1.0 ([CWD]/a)
[COMPILING] bar v0.1.0 ([CWD]/bar)
@ -3001,7 +3001,7 @@ fn decouple_same_target_transitive_dep_from_artifact_dep_and_proc_macro() {
.masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr_unordered(
"\
[LOCKING] 6 packages
[LOCKING] 6 packages to latest compatible versions
[COMPILING] d v0.1.0 ([CWD]/d)
[COMPILING] a v0.1.0 ([CWD]/a)
[COMPILING] b v0.1.0 ([CWD]/b)
@ -3067,7 +3067,7 @@ fn same_target_artifact_dep_sharing() {
.masquerade_as_nightly_cargo(&["bindeps"])
.with_stderr(
"\
[LOCKING] 3 packages
[LOCKING] 3 packages to latest compatible versions
[COMPILING] a v0.1.0 ([CWD]/a)
[COMPILING] bar v0.1.0 ([CWD]/bar)
[COMPILING] foo v0.1.0 ([CWD])

View File

@ -438,7 +438,7 @@ fn bench_with_deep_lib_dep() {
p.cargo("bench")
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] foo v0.0.1 ([..])
[COMPILING] bar v0.0.1 ([CWD])
[FINISHED] `bench` profile [optimized] target(s) in [..]
@ -904,7 +904,7 @@ fn bench_dylib() {
p.cargo("bench -v")
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar v0.0.1 ([CWD]/bar)
[RUNNING] [..] -C opt-level=3 [..]
[COMPILING] foo v0.0.1 ([CWD])

View File

@ -1454,7 +1454,7 @@ fn cargo_default_env_metadata_env_var() {
p.cargo("build -v")
.with_stderr(&format!(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar v0.0.1 ([CWD]/bar)
[RUNNING] `rustc --crate-name bar --edition=2015 bar/src/lib.rs [..]--crate-type dylib \
--emit=[..]link \
@ -2477,7 +2477,7 @@ fn verbose_release_build_deps() {
p.cargo("build -v --release")
.with_stderr(&format!(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] foo v0.0.0 ([CWD]/foo)
[RUNNING] `rustc --crate-name foo --edition=2015 foo/src/lib.rs [..]\
--crate-type dylib --crate-type rlib \
@ -4171,7 +4171,7 @@ fn invalid_spec() {
.with_status(101)
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[ERROR] package ID specification `notAValidDep` did not match any packages",
)
.run();
@ -4605,7 +4605,7 @@ fn build_all_workspace() {
p.cargo("build --workspace")
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar v0.1.0 ([..])
[COMPILING] foo v0.1.0 ([..])
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]
@ -4640,7 +4640,7 @@ fn build_all_exclude() {
.with_stderr_does_not_contain("[COMPILING] baz v0.1.0 [..]")
.with_stderr_unordered(
"\
[LOCKING] 3 packages
[LOCKING] 3 packages to latest compatible versions
[COMPILING] foo v0.1.0 ([..])
[COMPILING] bar v0.1.0 ([..])
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]
@ -4711,7 +4711,7 @@ fn build_all_exclude_not_found() {
.with_stderr_does_not_contain("[COMPILING] baz v0.1.0 [..]")
.with_stderr_unordered(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[WARNING] excluded package(s) `baz` not found in workspace [..]
[COMPILING] foo v0.1.0 ([..])
[COMPILING] bar v0.1.0 ([..])
@ -4747,7 +4747,7 @@ fn build_all_exclude_glob() {
.with_stderr_does_not_contain("[COMPILING] baz v0.1.0 [..]")
.with_stderr_unordered(
"\
[LOCKING] 3 packages
[LOCKING] 3 packages to latest compatible versions
[COMPILING] foo v0.1.0 ([..])
[COMPILING] bar v0.1.0 ([..])
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]
@ -4781,7 +4781,7 @@ fn build_all_exclude_glob_not_found() {
.with_stderr(
"\
[WARNING] excluded package pattern(s) `*z` not found in workspace [..]
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] [..] v0.1.0 ([..])
[COMPILING] [..] v0.1.0 ([..])
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]
@ -4832,7 +4832,7 @@ fn build_all_workspace_implicit_examples() {
p.cargo("build --workspace --examples")
.with_stderr(
"[LOCKING] 2 packages\n\
"[LOCKING] 2 packages to latest compatible versions\n\
[..] Compiling bar v0.1.0 ([..])\n\
[..] Compiling foo v0.1.0 ([..])\n\
[..] Finished `dev` profile [unoptimized + debuginfo] target(s) in [..]\n",
@ -4868,7 +4868,7 @@ fn build_all_virtual_manifest() {
p.cargo("build --workspace")
.with_stderr_unordered(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] baz v0.1.0 ([..])
[COMPILING] bar v0.1.0 ([..])
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]
@ -4897,7 +4897,7 @@ fn build_virtual_manifest_all_implied() {
p.cargo("build")
.with_stderr_unordered(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] baz v0.1.0 ([..])
[COMPILING] bar v0.1.0 ([..])
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]
@ -4926,7 +4926,7 @@ fn build_virtual_manifest_one_project() {
.with_stderr_does_not_contain("[..]baz[..]")
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar v0.1.0 ([..])
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]
",
@ -4954,7 +4954,7 @@ fn build_virtual_manifest_glob() {
.with_stderr_does_not_contain("[..]bar[..]")
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] baz v0.1.0 ([..])
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]
",
@ -5030,7 +5030,7 @@ fn build_all_virtual_manifest_implicit_examples() {
p.cargo("build --workspace --examples")
.with_stderr_unordered(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] baz v0.1.0 ([..])
[COMPILING] bar v0.1.0 ([..])
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]
@ -5077,7 +5077,7 @@ fn build_all_member_dependency_same_name() {
p.cargo("build --workspace")
.with_stderr(
"[UPDATING] `[..]` index\n\
[LOCKING] 2 packages\n\
[LOCKING] 2 packages to latest compatible versions\n\
[DOWNLOADING] crates ...\n\
[DOWNLOADED] a v0.1.0 ([..])\n\
[COMPILING] a v0.1.0\n\
@ -6131,7 +6131,7 @@ fn target_filters_workspace() {
.with_status(101)
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[ERROR] no example target named `ex`
<tab>Did you mean `ex1`?",
@ -6179,7 +6179,7 @@ fn target_filters_workspace_not_found() {
.with_status(101)
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[ERROR] no library targets found in packages: a, b",
)
.run();
@ -6239,7 +6239,7 @@ fn signal_display() {
foo.cargo("build")
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] pm [..]
[COMPILING] foo [..]
[ERROR] could not compile `foo` [..]
@ -6298,7 +6298,7 @@ fn pipelining_works() {
.with_stdout("")
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] [..]
[COMPILING] [..]
[FINISHED] [..]
@ -6415,7 +6415,7 @@ fn forward_rustc_output() {
.with_stdout("a\nb\n{}")
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] [..]
[COMPILING] [..]
c

View File

@ -889,7 +889,7 @@ fn custom_build_script_rustc_flags() {
p.cargo("build --verbose")
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] foo [..]
[RUNNING] `rustc --crate-name build_script_build --edition=2015 foo/build.rs [..]
[RUNNING] `[..]build-script-build`
@ -951,7 +951,7 @@ fn custom_build_script_rustc_flags_no_space() {
p.cargo("build --verbose")
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] foo [..]
[RUNNING] `rustc --crate-name build_script_build --edition=2015 foo/build.rs [..]
[RUNNING] `[..]build-script-build`
@ -1091,7 +1091,7 @@ fn links_duplicates_old_registry() {
.with_stderr(
"\
[UPDATING] `[..]` index
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[DOWNLOADING] crates ...
[DOWNLOADED] bar v0.1.0 ([..])
[ERROR] multiple packages link to native library `a`, \
@ -1705,7 +1705,7 @@ fn build_deps_simple() {
p.cargo("build -v")
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] a v0.5.0 ([CWD]/a)
[RUNNING] `rustc --crate-name a [..]`
[COMPILING] foo v0.5.0 ([CWD])
@ -1818,7 +1818,7 @@ fn build_cmd_with_a_build_cmd() {
p.cargo("build -v")
.with_stderr(
"\
[LOCKING] 3 packages
[LOCKING] 3 packages to latest compatible versions
[COMPILING] b v0.5.0 ([CWD]/b)
[RUNNING] `rustc --crate-name b [..]`
[COMPILING] a v0.5.0 ([CWD]/a)
@ -2994,7 +2994,7 @@ fn flags_go_into_tests() {
p.cargo("test -v --test=foo")
.with_stderr(
"\
[LOCKING] 3 packages
[LOCKING] 3 packages to latest compatible versions
[COMPILING] a v0.5.0 ([..]
[RUNNING] `rustc [..] a/build.rs [..]`
[RUNNING] `[..]/build-script-build`
@ -3094,7 +3094,7 @@ fn diamond_passes_args_only_once() {
p.cargo("build -v")
.with_stderr(
"\
[LOCKING] 4 packages
[LOCKING] 4 packages to latest compatible versions
[COMPILING] c v0.5.0 ([..]
[RUNNING] `rustc [..]`
[RUNNING] `[..]`
@ -3974,7 +3974,7 @@ fn warnings_hidden_for_upstream() {
.with_stderr(
"\
[UPDATING] `[..]` index
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[DOWNLOADING] crates ...
[DOWNLOADED] bar v0.1.0 ([..])
[COMPILING] bar v0.1.0
@ -4036,7 +4036,7 @@ fn warnings_printed_on_vv() {
.with_stderr(
"\
[UPDATING] `[..]` index
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[DOWNLOADING] crates ...
[DOWNLOADED] bar v0.1.0 ([..])
[COMPILING] bar v0.1.0
@ -4775,7 +4775,7 @@ fn optional_build_dep_and_required_normal_dep() {
.with_stdout("0")
.with_stderr(
"\
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[COMPILING] bar v0.5.0 ([..])
[COMPILING] foo v0.1.0 ([..])
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]

View File

@ -261,7 +261,7 @@ fn link_arg_transitive_not_allowed() {
.with_stderr(
"\
[UPDATING] [..]
[LOCKING] 2 packages
[LOCKING] 2 packages to latest compatible versions
[DOWNLOADING] [..]
[DOWNLOADED] [..]
[COMPILING] bar v1.0.0

View File

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

Before

Width:  |  Height:  |  Size: 984 B

After

Width:  |  Height:  |  Size: 1014 B

View File

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

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

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

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

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

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -24,7 +24,7 @@
</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 x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="100px">
</tspan>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -26,7 +26,7 @@
</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v0.4.1 to dependencies</tspan>
</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</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>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -20,7 +20,7 @@
<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>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="64px">
</tspan>

Before

Width:  |  Height:  |  Size: 852 B

After

Width:  |  Height:  |  Size: 882 B

View File

@ -39,7 +39,7 @@
</tspan>
<tspan x="10px" y="190px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> unrelated</tspan>
</tspan>
<tspan x="10px" y="208px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="208px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="226px">
</tspan>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -22,7 +22,7 @@
</tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `foo`</tspan>
</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="82px">
</tspan>

Before

Width:  |  Height:  |  Size: 978 B

After

Width:  |  Height:  |  Size: 1008 B

View File

@ -20,7 +20,7 @@
<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>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="64px">
</tspan>

Before

Width:  |  Height:  |  Size: 859 B

After

Width:  |  Height:  |  Size: 889 B

View File

@ -24,7 +24,7 @@
</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 x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="100px">
</tspan>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

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

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -22,7 +22,7 @@
</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 x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="82px">
</tspan>

Before

Width:  |  Height:  |  Size: 993 B

After

Width:  |  Height:  |  Size: 1023 B

View File

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

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -35,7 +35,7 @@
</tspan>
<tspan x="10px" y="136px"><tspan class="fg-green bold"> Updating</tspan><tspan> `dummy-registry` index</tspan>
</tspan>
<tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 4 packages</tspan>
<tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 4 packages to latest compatible versions</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>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -35,7 +35,7 @@
</tspan>
<tspan x="10px" y="136px"><tspan class="fg-green bold"> Updating</tspan><tspan> `dummy-registry` index</tspan>
</tspan>
<tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 4 packages</tspan>
<tspan x="10px" y="154px"><tspan class="fg-green bold"> Locking</tspan><tspan> 4 packages to latest compatible versions</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>

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -20,7 +20,7 @@
<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>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="64px">
</tspan>

Before

Width:  |  Height:  |  Size: 879 B

After

Width:  |  Height:  |  Size: 909 B

View File

@ -39,7 +39,7 @@
</tspan>
<tspan x="10px" y="190px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> unrelated</tspan>
</tspan>
<tspan x="10px" y="208px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="208px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="226px">
</tspan>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -28,7 +28,7 @@
</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package v99999.0.0 to dependencies</tspan>
</tspan>
<tspan x="10px" y="100px"><tspan class="fg-green bold"> Locking</tspan><tspan> 4 packages</tspan>
<tspan x="10px" y="100px"><tspan class="fg-green bold"> Locking</tspan><tspan> 4 packages to latest compatible versions</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>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -26,7 +26,7 @@
</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v0.4.1 to dependencies</tspan>
</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</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>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

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

Before

Width:  |  Height:  |  Size: 980 B

After

Width:  |  Height:  |  Size: 1010 B

View File

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

Before

Width:  |  Height:  |  Size: 980 B

After

Width:  |  Height:  |  Size: 1010 B

View File

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

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -26,7 +26,7 @@
</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v0.4.1 to dependencies</tspan>
</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</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>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -26,7 +26,7 @@
</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v0.4.1 to dependencies</tspan>
</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</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>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -24,7 +24,7 @@
</tspan>
<tspan x="10px" y="64px"><tspan> </tspan><tspan class="fg-green bold">+</tspan><tspan> test</tspan>
</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="100px">
</tspan>

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -20,7 +20,7 @@
<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>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="64px">
</tspan>

Before

Width:  |  Height:  |  Size: 852 B

After

Width:  |  Height:  |  Size: 882 B

View File

@ -22,7 +22,7 @@
</tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `foo`</tspan>
</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="82px">
</tspan>

Before

Width:  |  Height:  |  Size: 978 B

After

Width:  |  Height:  |  Size: 1008 B

View File

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

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -26,7 +26,7 @@
</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v0.4.1 to dependencies</tspan>
</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</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>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -26,7 +26,7 @@
</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> my-package2 v0.4.1 to dependencies</tspan>
</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</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>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

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

Before

Width:  |  Height:  |  Size: 980 B

After

Width:  |  Height:  |  Size: 1010 B

View File

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

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

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

Before

Width:  |  Height:  |  Size: 980 B

After

Width:  |  Height:  |  Size: 1010 B

View File

@ -22,7 +22,7 @@
</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 x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="82px">
</tspan>

Before

Width:  |  Height:  |  Size: 987 B

After

Width:  |  Height:  |  Size: 1017 B

View File

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

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -22,7 +22,7 @@
</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 x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="82px">
</tspan>

Before

Width:  |  Height:  |  Size: 994 B

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -26,7 +26,7 @@
</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `cargo-list-test-fixture-dependency`</tspan>
</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</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>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -22,7 +22,7 @@
</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 x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="82px">
</tspan>

Before

Width:  |  Height:  |  Size: 987 B

After

Width:  |  Height:  |  Size: 1017 B

View File

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

Before

Width:  |  Height:  |  Size: 980 B

After

Width:  |  Height:  |  Size: 1010 B

View File

@ -24,7 +24,7 @@
</tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> versioned-package v99999.0.0 to dependencies</tspan>
</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</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>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -24,7 +24,7 @@
</tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> versioned-package v99999.0.0 to dependencies</tspan>
</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</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>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -26,7 +26,7 @@
</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Adding</tspan><tspan> feature `a1`</tspan>
</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</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>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -24,7 +24,7 @@
</tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> versioned-package v99999.0.0 to dependencies</tspan>
</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 3 packages to latest compatible versions</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>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -20,7 +20,7 @@
<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>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="64px">
</tspan>

Before

Width:  |  Height:  |  Size: 848 B

After

Width:  |  Height:  |  Size: 878 B

View File

@ -39,7 +39,7 @@
</tspan>
<tspan x="10px" y="190px"><tspan> </tspan><tspan class="fg-red bold">-</tspan><tspan> unrelated</tspan>
</tspan>
<tspan x="10px" y="208px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="208px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="226px">
</tspan>

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -20,7 +20,7 @@
<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>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="64px">
</tspan>

Before

Width:  |  Height:  |  Size: 879 B

After

Width:  |  Height:  |  Size: 909 B

View File

@ -20,7 +20,7 @@
<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>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="64px">
</tspan>

Before

Width:  |  Height:  |  Size: 883 B

After

Width:  |  Height:  |  Size: 913 B

View File

@ -20,7 +20,7 @@
<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>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="64px">
</tspan>

Before

Width:  |  Height:  |  Size: 879 B

After

Width:  |  Height:  |  Size: 909 B

View File

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

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

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

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -24,7 +24,7 @@
</tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> toml v99999.0.0 to dependencies</tspan>
</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 4 packages</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 4 packages to latest compatible versions</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>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -24,7 +24,7 @@
</tspan>
<tspan x="10px" y="46px"><tspan class="fg-green bold"> Adding</tspan><tspan> toml v99999.0.0 to dependencies</tspan>
</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 4 packages</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 4 packages to latest compatible versions</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>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -22,7 +22,7 @@
</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 x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="82px">
</tspan>

Before

Width:  |  Height:  |  Size: 987 B

After

Width:  |  Height:  |  Size: 1017 B

View File

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

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

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

Before

Width:  |  Height:  |  Size: 984 B

After

Width:  |  Height:  |  Size: 1014 B

View File

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

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -22,7 +22,7 @@
</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 x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="82px">
</tspan>

Before

Width:  |  Height:  |  Size: 987 B

After

Width:  |  Height:  |  Size: 1017 B

View File

@ -22,7 +22,7 @@
</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 x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</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>
<tspan x="10px" y="82px">
</tspan>

Before

Width:  |  Height:  |  Size: 987 B

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -26,7 +26,7 @@
</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 x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</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>
<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>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -22,7 +22,7 @@
</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 x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="64px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest compatible versions</tspan>
</tspan>
<tspan x="10px" y="82px">
</tspan>

Before

Width:  |  Height:  |  Size: 987 B

After

Width:  |  Height:  |  Size: 1017 B

View File

@ -26,7 +26,7 @@
</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 x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest Rust [..] compatible versions</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>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -26,7 +26,7 @@
</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 x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages</tspan>
<tspan x="10px" y="82px"><tspan class="fg-green bold"> Locking</tspan><tspan> 2 packages to latest Rust [..] compatible versions</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>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

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