diff --git a/Cargo.lock b/Cargo.lock index 42fea8cc0..259c2d7ff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4284,11 +4284,20 @@ dependencies = [ "bitflags 2.9.0", ] +[[package]] +name = "xml" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72e6e0a83ae73d886ab66fc2f82b598fbbb8f373357d5f2f9f783e50e4d06435" + [[package]] name = "xml-rs" -version = "0.8.22" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af4e2e2f7cba5a093896c1e150fbfe177d1883e7448200efb81d40b9d339ef26" +checksum = "c3a56132a0d6ecbe77352edc10232f788fc4ceefefff4cab784a98e0e16b6b51" +dependencies = [ + "xml", +] [[package]] name = "xmlparser" diff --git a/bazelfe-core/Cargo.toml b/bazelfe-core/Cargo.toml index 9cd8cbd5b..ac2f1be7e 100644 --- a/bazelfe-core/Cargo.toml +++ b/bazelfe-core/Cargo.toml @@ -91,7 +91,7 @@ anyhow = "1.0.99" tower = "0.4.13" mio = "1.0.4" ptyprocess = "0.5.0" -xml-rs = "0.8.22" +xml-rs = "1.0.0" [build-dependencies] vergen = { version = "8.3.2", features = [ "build", "git", "gitcl" ]}