diff --git a/crates/Cargo.lock b/crates/Cargo.lock index 3224c587..ecc9a5d7 100644 --- a/crates/Cargo.lock +++ b/crates/Cargo.lock @@ -1508,9 +1508,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.100" +version = "1.0.102" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f1e14e89be7aa4c4b78bdbdc9eb5bf8517829a600ae8eaa39a6e1d960b5185c" +checksum = "b5062a995d481b2308b6064e9af76011f2921c35f97b0468811ed9f6cd91dfed" dependencies = [ "itoa", "ryu", diff --git a/crates/driver/Cargo.toml b/crates/driver/Cargo.toml index da59c6e5..af6a5147 100644 --- a/crates/driver/Cargo.toml +++ b/crates/driver/Cargo.toml @@ -10,7 +10,7 @@ anyhow = "1.0.71" tokio = { version = "1.29.1", features = ["full"] } clap = { version = "4.3.11", features = ["derive"] } serde = { version = "1.0.168", features = ["derive"] } -serde_json = "1.0.100" +serde_json = "1.0.102" walkdir = "2.3.3" futures = "0.3.28" sha2 = { version = "0.10.7", features = ["asm"] } diff --git a/crates/jarscanner/Cargo.toml b/crates/jarscanner/Cargo.toml index d7416b46..a21d4eea 100644 --- a/crates/jarscanner/Cargo.toml +++ b/crates/jarscanner/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] zip = "0.6.6" serde = { version = "1.0.168", features = ["derive"] } -serde_json = "1.0.100" +serde_json = "1.0.102" clap = { version = "4.3.11", features = ["derive"] } tempfile = "3.6.0" tokio = { version = "1.29.1", features = ["full"] } diff --git a/crates/python_extractor/Cargo.toml b/crates/python_extractor/Cargo.toml index 83bd22cd..09b5d55a 100644 --- a/crates/python_extractor/Cargo.toml +++ b/crates/python_extractor/Cargo.toml @@ -9,7 +9,7 @@ anyhow = "1.0.71" tokio = { version = "1.29.1", features = ["full"] } clap = { version = "4.3.11", features = ["derive"] } serde = { version = "1.0.168", features = ["derive"] } -serde_json = "1.0.100" +serde_json = "1.0.102" walkdir = "2.3.3" futures = "0.3.28" sha2 = { version = "0.10.7", features = ["asm"] } diff --git a/crates/shared_types/Cargo.toml b/crates/shared_types/Cargo.toml index bd934df9..5edf660b 100644 --- a/crates/shared_types/Cargo.toml +++ b/crates/shared_types/Cargo.toml @@ -8,6 +8,6 @@ edition = "2021" [dependencies] nom = "7.1.1" serde = { version = "1.0.168", features = ["derive"] } -serde_json = "1.0.100" +serde_json = "1.0.102" # Todo remove this and use a proper error for the library anyhow = "1.0.71"