Skip to content

Commit

Permalink
upgrade cargo_toml dependency to 0.19.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ParkMyCar committed Feb 19, 2024
1 parent bbe2cf4 commit 89cacc6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions crate_universe/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crate_universe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ default = ["cargo"]
anyhow = "1.0.75"
camino = "1.1.6"
cargo_metadata = "0.18.1"
cargo_toml = "0.17.1"
cargo_toml = "0.19.1"
cargo-lock = "9.0.0"
cargo-platform = "0.1.4"
cfg-expr = "0.15.5"
Expand Down
2 changes: 1 addition & 1 deletion crate_universe/src/splicing/splicer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ impl<'a> SplicerKind<'a> {
for (name, details) in direct_packages_manifest.iter() {
manifest.dependencies.insert(
name.clone(),
cargo_toml::Dependency::Detailed(details.clone()),
cargo_toml::Dependency::Detailed(Box::new(details.clone())),
);
}

Expand Down
2 changes: 1 addition & 1 deletion crate_universe/test_data/serialized_configs/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ write_file(
packages = {
"cargo_toml": crate.spec(
git = "https://gitlab.com/crates.rs/cargo_toml.git",
tag = "v0.15.2",
tag = "v0.19.1",
),
"cfg-if": crate.spec(
git = "https://github.com/rust-lang/cfg-if.git",
Expand Down

0 comments on commit 89cacc6

Please sign in to comment.