diff --git a/Cargo.lock b/Cargo.lock index 1f25e59a96..1c16f688e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2382,18 +2382,18 @@ checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" [[package]] name = "serde" -version = "1.0.189" +version = "1.0.190" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e422a44e74ad4001bdc8eede9a4570ab52f71190e9c076d14369f38b9200537" +checksum = "91d3c334ca1ee894a2c6f6ad698fe8c435b76d504b13d436f0685d648d6d96f7" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.189" +version = "1.0.190" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e48d1f918009ce3145511378cf68d613e3b3d9137d67272562080d68a2b32d5" +checksum = "67c5609f394e5c2bd7fc51efda478004ea80ef42fee983d5c67a65e34f32c0e3" dependencies = [ "proc-macro2", "quote 1.0.33", diff --git a/compiler/compiler/Cargo.toml b/compiler/compiler/Cargo.toml index 03e156f2ee..9420d697a4 100644 --- a/compiler/compiler/Cargo.toml +++ b/compiler/compiler/Cargo.toml @@ -62,7 +62,7 @@ features = [ "circuit", "console" ] version = "1.10.2" [dev-dependencies.serde] -version = "1.0.189" +version = "1.0.190" features = [ "derive" ] [dev-dependencies.serde_yaml] diff --git a/compiler/span/Cargo.toml b/compiler/span/Cargo.toml index babd274b00..c9fb81d18d 100644 --- a/compiler/span/Cargo.toml +++ b/compiler/span/Cargo.toml @@ -29,5 +29,5 @@ version = "0.2.1" version = "1.0.1" [dependencies.serde] -version = "1.0.189" +version = "1.0.190" features = [ "derive", "rc" ] diff --git a/errors/Cargo.toml b/errors/Cargo.toml index 6a7b594aa8..b4cd257955 100644 --- a/errors/Cargo.toml +++ b/errors/Cargo.toml @@ -38,7 +38,7 @@ version = "0.6.1" version = "2.2.0" [dependencies.serde] -version = "1.0.189" +version = "1.0.190" features = [ "derive", "rc" ] [dependencies.thiserror]