diff --git a/crates/Cargo.lock b/crates/Cargo.lock index b3240d4..adcca52 100644 --- a/crates/Cargo.lock +++ b/crates/Cargo.lock @@ -1612,9 +1612,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.137" +version = "1.0.138" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "930cfb6e6abf99298aaad7d29abbef7a9999a9a8806a40088f55f0dcec03146b" +checksum = "d434192e7da787e94a6ea7e9670b26a036d0ca41e0b7efb2676dd32bae872949" dependencies = [ "itoa", "memchr", diff --git a/crates/driver/Cargo.toml b/crates/driver/Cargo.toml index 2226a10..769ceb9 100644 --- a/crates/driver/Cargo.toml +++ b/crates/driver/Cargo.toml @@ -10,7 +10,7 @@ anyhow = "1.0.95" tokio = { version = "1.43.0", features = ["full"] } clap = { version = "4.5.27", features = ["derive"] } serde = { version = "1.0.217", features = ["derive"] } -serde_json = "1.0.137" +serde_json = "1.0.138" walkdir = "2.5.0" futures = "0.3.31" sha2 = { version = "0.10.8", features = ["asm"] } diff --git a/crates/jarscanner/Cargo.toml b/crates/jarscanner/Cargo.toml index 5de4c8d..069cc03 100644 --- a/crates/jarscanner/Cargo.toml +++ b/crates/jarscanner/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] zip = "1.3.0" serde = { version = "1.0.217", features = ["derive"] } -serde_json = "1.0.137" +serde_json = "1.0.138" clap = { version = "4.5.27", features = ["derive"] } tempfile = "3.10.1" tokio = { version = "1.43.0", features = ["full"] } diff --git a/crates/protobuf_extractor/Cargo.toml b/crates/protobuf_extractor/Cargo.toml index 8b667f0..194e761 100644 --- a/crates/protobuf_extractor/Cargo.toml +++ b/crates/protobuf_extractor/Cargo.toml @@ -8,7 +8,7 @@ anyhow = "1.0.95" tokio = { version = "1.43.0", features = ["full"] } clap = { version = "4.5.27", features = ["derive"] } serde = { version = "1.0.217", features = ["derive"] } -serde_json = "1.0.137" +serde_json = "1.0.138" pretty_env_logger = "0.5.0" log = "0.4.25" tree-sitter = "0.22.6" diff --git a/crates/python_extractor/Cargo.toml b/crates/python_extractor/Cargo.toml index 3b23d85..0082d06 100644 --- a/crates/python_extractor/Cargo.toml +++ b/crates/python_extractor/Cargo.toml @@ -9,7 +9,7 @@ anyhow = "1.0.95" tokio = { version = "1.43.0", features = ["full"] } clap = { version = "4.5.27", features = ["derive"] } serde = { version = "1.0.217", features = ["derive"] } -serde_json = "1.0.137" +serde_json = "1.0.138" walkdir = "2.5.0" futures = "0.3.31" sha2 = { version = "0.10.8", features = ["asm"] } diff --git a/crates/shared_types/Cargo.toml b/crates/shared_types/Cargo.toml index b484570..4254f8c 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.217", features = ["derive"] } -serde_json = "1.0.137" +serde_json = "1.0.138" # Todo remove this and use a proper error for the library anyhow = "1.0.95"