diff --git a/crates/Cargo.lock b/crates/Cargo.lock index 3146fc19..9520154a 100644 --- a/crates/Cargo.lock +++ b/crates/Cargo.lock @@ -99,9 +99,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.72" +version = "1.0.73" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854" +checksum = "f768393e7fabd388fe8409b13faa4d93ab0fef35db1508438dfdb066918bcf38" [[package]] name = "ascii" diff --git a/crates/driver/Cargo.toml b/crates/driver/Cargo.toml index b441e1c4..4e0c41f3 100644 --- a/crates/driver/Cargo.toml +++ b/crates/driver/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.72" +anyhow = "1.0.73" tokio = { version = "1.31.0", features = ["full"] } clap = { version = "4.3.21", features = ["derive"] } serde = { version = "1.0.183", features = ["derive"] } diff --git a/crates/protobuf_extractor/Cargo.toml b/crates/protobuf_extractor/Cargo.toml index e0db35eb..f4536b7e 100644 --- a/crates/protobuf_extractor/Cargo.toml +++ b/crates/protobuf_extractor/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -anyhow = "1.0.66" +anyhow = "1.0.73" tokio = { version = "1.31.0", features = ["full"] } clap = { version = "4.3.21", features = ["derive"] } serde = { version = "1.0.183", features = ["derive"] } diff --git a/crates/python_extractor/Cargo.toml b/crates/python_extractor/Cargo.toml index c98e3e7b..bb3fa30d 100644 --- a/crates/python_extractor/Cargo.toml +++ b/crates/python_extractor/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] -anyhow = "1.0.72" +anyhow = "1.0.73" tokio = { version = "1.31.0", features = ["full"] } clap = { version = "4.3.21", features = ["derive"] } serde = { version = "1.0.183", features = ["derive"] } diff --git a/crates/python_utilities/Cargo.toml b/crates/python_utilities/Cargo.toml index 59572d62..9666e0ab 100644 --- a/crates/python_utilities/Cargo.toml +++ b/crates/python_utilities/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = "1.0.72" +anyhow = "1.0.73" rustpython-parser = { git = "https://github.com/RustPython/RustPython.git", rev = "b9ed63ed326e4ab9c97d808271ddc1d7ca05fda7"} rustpython-ast = { git = "https://github.com/RustPython/RustPython.git", rev = "b9ed63ed326e4ab9c97d808271ddc1d7ca05fda7", features = ["unparse"]} diff --git a/crates/shared_types/Cargo.toml b/crates/shared_types/Cargo.toml index eed02040..c31a896c 100644 --- a/crates/shared_types/Cargo.toml +++ b/crates/shared_types/Cargo.toml @@ -10,4 +10,4 @@ nom = "7.1.1" serde = { version = "1.0.183", features = ["derive"] } serde_json = "1.0.104" # Todo remove this and use a proper error for the library -anyhow = "1.0.72" +anyhow = "1.0.73"