diff --git a/Cargo.lock b/Cargo.lock index befe7998..03353774 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1904,9 +1904,9 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.156" +version = "1.0.157" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "314b5b092c0ade17c00142951e50ced110ec27cea304b1037c6969246c2469a4" +checksum = "707de5fcf5df2b5788fca98dd7eab490bc2fd9b7ef1404defc462833b83f25ca" dependencies = [ "serde_derive", ] @@ -1922,13 +1922,13 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.156" +version = "1.0.157" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7e29c4601e36bcec74a223228dce795f4cd3616341a4af93520ca1a837c087d" +checksum = "78997f4555c22a7971214540c4a661291970619afd56de19f77e0de86296e1e5" dependencies = [ "proc-macro2", "quote", - "syn 1.0.107", + "syn 2.0.2", ] [[package]] diff --git a/crates/binstalk-downloader/Cargo.toml b/crates/binstalk-downloader/Cargo.toml index b57887be..d46846df 100644 --- a/crates/binstalk-downloader/Cargo.toml +++ b/crates/binstalk-downloader/Cargo.toml @@ -23,7 +23,7 @@ futures-lite = { version = "1.12.0", default-features = false } generic-array = "0.14.6" httpdate = "1.0.2" reqwest = { version = "0.11.14", features = ["stream", "gzip", "brotli", "deflate"], default-features = false } -serde = { version = "1.0.156", features = ["derive"], optional = true } +serde = { version = "1.0.157", features = ["derive"], optional = true } serde_json = { version = "1.0.94", optional = true } # Use a fork here since we need PAX support, but the upstream # does not hav the PR merged yet. diff --git a/crates/binstalk-manifests/Cargo.toml b/crates/binstalk-manifests/Cargo.toml index 734b98c1..bb6e77c4 100644 --- a/crates/binstalk-manifests/Cargo.toml +++ b/crates/binstalk-manifests/Cargo.toml @@ -17,7 +17,7 @@ fs-lock = { version = "0.1.0", path = "../fs-lock" } home = "0.5.4" miette = "5.6.0" semver = { version = "1.0.17", features = ["serde"] } -serde = { version = "1.0.156", features = ["derive"] } +serde = { version = "1.0.157", features = ["derive"] } serde-tuple-vec-map = "1.0.1" serde_json = "1.0.94" thiserror = "1.0.40" diff --git a/crates/binstalk-types/Cargo.toml b/crates/binstalk-types/Cargo.toml index e89eaee9..1ade18d0 100644 --- a/crates/binstalk-types/Cargo.toml +++ b/crates/binstalk-types/Cargo.toml @@ -14,7 +14,7 @@ compact_str = { version = "0.7.0", features = ["serde"] } maybe-owned = { version = "0.3.4", features = ["serde"] } once_cell = "1.17.1" semver = { version = "1.0.17", features = ["serde"] } -serde = { version = "1.0.156", features = ["derive"] } +serde = { version = "1.0.157", features = ["derive"] } strum = "0.24.1" strum_macros = "0.24.3" url = { version = "2.3.1", features = ["serde"] } diff --git a/crates/binstalk/Cargo.toml b/crates/binstalk/Cargo.toml index 09cd3388..4f72e97f 100644 --- a/crates/binstalk/Cargo.toml +++ b/crates/binstalk/Cargo.toml @@ -26,7 +26,7 @@ miette = "5.6.0" normalize-path = { version = "0.2.0", path = "../normalize-path" } once_cell = "1.17.1" semver = { version = "1.0.17", features = ["serde"] } -serde = { version = "1.0.156", features = ["derive"] } +serde = { version = "1.0.157", features = ["derive"] } strum = "0.24.1" tempfile = "3.4.0" thiserror = "1.0.40"