Skip to content

Commit

Permalink
upgrade cargo-toml to 0.19.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ParkMyCar committed Mar 8, 2024
1 parent 8b977b5 commit 5932631
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion crate_universe/3rdparty/crates/BUILD.bazel

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

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

14 changes: 7 additions & 7 deletions crate_universe/3rdparty/crates/defs.bzl

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

6 changes: 3 additions & 3 deletions crate_universe/Cargo.lock

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

4 changes: 2 additions & 2 deletions crate_universe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ exclude = ["test_data"]

[package]
name = "cargo-bazel"
version = "0.11.0"
version = "0.12.0"
authors = [
"Andre Brisco - [email protected]",
]
Expand All @@ -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.2"
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/version.bzl
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
""" Version info for the `cargo-bazel` repository """

VERSION = "0.11.0"
VERSION = "0.12.0"

0 comments on commit 5932631

Please sign in to comment.