diff --git a/crates/Cargo.lock b/crates/Cargo.lock index 7b21446b..62b1dffd 100644 --- a/crates/Cargo.lock +++ b/crates/Cargo.lock @@ -1508,9 +1508,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.102" +version = "1.0.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5062a995d481b2308b6064e9af76011f2921c35f97b0468811ed9f6cd91dfed" +checksum = "d03b412469450d4404fe8499a268edd7f8b79fecb074b0d812ad64ca21f4031b" dependencies = [ "itoa", "ryu", diff --git a/crates/driver/Cargo.toml b/crates/driver/Cargo.toml index ce96b559..9a1e4782 100644 --- a/crates/driver/Cargo.toml +++ b/crates/driver/Cargo.toml @@ -10,7 +10,7 @@ anyhow = "1.0.72" 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.102" +serde_json = "1.0.103" 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 a21d4eea..aa0fffd3 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.102" +serde_json = "1.0.103" 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 6e23c3bf..250fc057 100644 --- a/crates/python_extractor/Cargo.toml +++ b/crates/python_extractor/Cargo.toml @@ -9,7 +9,7 @@ anyhow = "1.0.72" 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.102" +serde_json = "1.0.103" 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 0cabfa68..6ae1716f 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.102" +serde_json = "1.0.103" # Todo remove this and use a proper error for the library anyhow = "1.0.72"