diff --git a/crates/Cargo.lock b/crates/Cargo.lock index 78a367d2..0886b72b 100644 --- a/crates/Cargo.lock +++ b/crates/Cargo.lock @@ -1501,9 +1501,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.103" +version = "1.0.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d03b412469450d4404fe8499a268edd7f8b79fecb074b0d812ad64ca21f4031b" +checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c" dependencies = [ "itoa", "ryu", diff --git a/crates/driver/Cargo.toml b/crates/driver/Cargo.toml index 0b7ce06f..0b3578a0 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.19", features = ["derive"] } serde = { version = "1.0.175", features = ["derive"] } -serde_json = "1.0.103" +serde_json = "1.0.104" 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 bb572bdd..8d731f7d 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.175", features = ["derive"] } -serde_json = "1.0.103" +serde_json = "1.0.104" clap = { version = "4.3.19", features = ["derive"] } tempfile = "3.7.0" tokio = { version = "1.29.1", features = ["full"] } diff --git a/crates/python_extractor/Cargo.toml b/crates/python_extractor/Cargo.toml index ff45ac45..a88c356d 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.19", features = ["derive"] } serde = { version = "1.0.175", features = ["derive"] } -serde_json = "1.0.103" +serde_json = "1.0.104" 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 ed40cd7a..3839cc7d 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.175", features = ["derive"] } -serde_json = "1.0.103" +serde_json = "1.0.104" # Todo remove this and use a proper error for the library anyhow = "1.0.72"