Merge pull request #281 from nix-community/renovate/all

fix(deps): update all dependencies
This commit is contained in:
nikstur 2024-01-09 15:16:38 +00:00 committed by GitHub
commit 11e293475d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

12
rust/tool/Cargo.lock generated
View File

@ -189,9 +189,9 @@ dependencies = [
[[package]] [[package]]
name = "clap" name = "clap"
version = "4.4.12" version = "4.4.14"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcfab8ba68f3668e89f6ff60f5b205cea56aa7b769451a59f34b8682f51c056d" checksum = "33e92c5c1a78c62968ec57dbc2440366a2d6e5a23faf829970ff1585dc6b18e2"
dependencies = [ dependencies = [
"clap_builder", "clap_builder",
"clap_derive", "clap_derive",
@ -199,9 +199,9 @@ dependencies = [
[[package]] [[package]]
name = "clap_builder" name = "clap_builder"
version = "4.4.12" version = "4.4.14"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb7fb5e4e979aec3be7791562fcba452f94ad85e954da024396433e0e25a79e9" checksum = "f4323769dc8a61e2c39ad7dc26f6f2800524691a44d74fe3d1071a5c24db6370"
dependencies = [ dependencies = [
"anstream", "anstream",
"anstyle", "anstyle",
@ -707,9 +707,9 @@ dependencies = [
[[package]] [[package]]
name = "serde_json" name = "serde_json"
version = "1.0.110" version = "1.0.111"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fbd975230bada99c8bb618e0c365c2eefa219158d5c6c29610fd09ff1833257" checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4"
dependencies = [ dependencies = [
"itoa", "itoa",
"ryu", "ryu",

View File

@ -10,10 +10,10 @@ anyhow = "1.0.79"
base32ct = { version = "0.2.0", features = ["alloc"] } base32ct = { version = "0.2.0", features = ["alloc"] }
stderrlog = "0.5.4" stderrlog = "0.5.4"
log = { version = "0.4.20", features = ["std"] } log = { version = "0.4.20", features = ["std"] }
clap = { version = "4.4.12", features = ["derive"] } clap = { version = "4.4.14", features = ["derive"] }
lanzaboote_tool = { path = "../shared" } lanzaboote_tool = { path = "../shared" }
indoc = "2.0.4" indoc = "2.0.4"
serde_json = "1.0.110" serde_json = "1.0.111"
sha2 = "0.10.8" sha2 = "0.10.8"
tempfile = "3.9.0" tempfile = "3.9.0"
nix = { version = "0.27.1", default-features = false, features = [ "fs" ] } nix = { version = "0.27.1", default-features = false, features = [ "fs" ] }