diff --git a/Cargo.lock b/Cargo.lock index 529a251..4c3ea7f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -345,9 +345,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.115" +version = "1.0.116" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12dc5c46daa8e9fdf4f5e71b6cf9a53f2487da0e86e55808e2d35539666497dd" +checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813" dependencies = [ "itoa", "ryu", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 90ca3f7..03bbcb4 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -11,7 +11,7 @@ categories = ["command-line-utilities"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde_json = "1.0.115" +serde_json = "1.0.116" clap = { version = "4.5.4", features = ["derive"] } schema2000 = { version = "0.1.0", path = "../core" } diff --git a/core/Cargo.toml b/core/Cargo.toml index be1243b..31a5af9 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -12,6 +12,6 @@ authors = ["REWE Digital schema2000 maintainers"] [dependencies] maplit = "1.0.2" -serde_json = "1.0.115" +serde_json = "1.0.116" parameterized = "1.0.1" chrono = "0.4.38" diff --git a/test-suite/Cargo.toml b/test-suite/Cargo.toml index e969de5..97dbcce 100644 --- a/test-suite/Cargo.toml +++ b/test-suite/Cargo.toml @@ -6,5 +6,5 @@ edition = "2018" license = "MIT OR Apache-2.0" [dependencies] -serde_json = "1.0.115" +serde_json = "1.0.116" schema2000 = { path = "../core" }