From 11572b3e2dc1b7894516605fc8774efd6648ac65 Mon Sep 17 00:00:00 2001 From: Andres Suarez Date: Tue, 27 Sep 2022 15:18:58 -0700 Subject: [PATCH] update to rust 1.64.0 Summary: https://blog.rust-lang.org/2022/09/22/Rust-1.64.0.html Reviewed By: diliop, dtolnay Differential Revision: D39825734 fbshipit-source-id: 4a789f2c24707fbc6a14b506448d405d5a60a53d --- hphp/hack/src/Cargo.lock | 12 ++++++------ hphp/hack/src/hackc/bytecode_printer/Cargo.toml | 4 ++-- hphp/hack/src/hackc/cargo/hackc/Cargo.toml | 4 ++-- hphp/hack/src/hackc/compile/cargo/compile/Cargo.toml | 4 ++-- hphp/hack/src/hackc/decl_provider/Cargo.toml | 2 +- hphp/hack/src/hackc/error/cargo/error/Cargo.toml | 2 +- hphp/hack/src/hackc/ffi_bridge/Cargo.toml | 2 +- hphp/hack/src/hackc/hhbc/cargo/dump-opcodes/Cargo.toml | 2 +- hphp/hack/src/hackc/hhvm_config/cargo/options/Cargo.toml | 2 +- hphp/hack/src/hackc/ir/conversions/textual/Cargo.toml | 2 +- hphp/hack/src/hackc/ir/verify/Cargo.toml | 2 +- hphp/hack/src/hackc/print_expr/Cargo.toml | 4 ++-- hphp/hack/src/hackc/sem_diff/Cargo.toml | 2 +- hphp/hack/src/hackrs/datastore/Cargo.toml | 2 +- .../hack/src/hackrs/decl_parser/cargo/decl_parser/Cargo.toml | 2 +- .../src/hackrs/depgraph_api/cargo/depgraph_api/Cargo.toml | 2 +- .../src/hackrs/file_provider/cargo/file_provider/Cargo.toml | 2 +- .../cargo/folded_decl_provider/Cargo.toml | 4 ++-- .../hack/src/hackrs/hackrs_test/cargo/hackrs_test/Cargo.toml | 2 +- .../hackrs_test_utils/cargo/hackrs_test_utils/Cargo.toml | 2 +- .../hackrs/naming_provider/cargo/naming_provider/Cargo.toml | 2 +- hphp/hack/src/hackrs/rupro/cargo/rupro/Cargo.toml | 2 +- .../cargo/shallow_decl_provider/Cargo.toml | 4 ++-- hphp/hack/src/hh_codegen/Cargo.toml | 2 +- hphp/hack/src/naming/names_rust/Cargo.toml | 2 +- hphp/hack/src/ocamlrep_derive/Cargo.toml | 2 +- hphp/hack/src/parser/lowerer/Cargo.toml | 2 +- hphp/hack/src/providers/hackrs_provider_backend/Cargo.toml | 2 +- hphp/hack/src/rust_to_ocaml/rust_to_ocaml/Cargo.toml | 2 +- hphp/hack/src/shmffi/cargo/shm_store/Cargo.toml | 2 +- hphp/hack/src/utils/ffi_cbindgen/Cargo.toml | 2 +- hphp/hack/src/utils/hdf/Cargo.toml | 2 +- hphp/hack/src/utils/hh24_types/Cargo.toml | 4 ++-- hphp/hack/src/utils/hhvm_options/Cargo.toml | 2 +- .../hhvm_runtime_options/hhvm_runtime_options/Cargo.toml | 2 +- hphp/hack/src/utils/multifile/Cargo.toml | 2 +- hphp/hack/src/utils/rust/signed_source/Cargo.toml | 2 +- hphp/tools/hhbc-gen/Cargo.toml | 2 +- third-party/thrift/src/thrift/lib/rust/Cargo.toml | 4 ++-- .../thrift/src/thrift/lib/rust/deterministic_hash/Cargo.toml | 4 ++-- .../thrift/lib/rust/deterministic_hash/src/tests/Cargo.toml | 4 ++-- .../thrift/src/thrift/lib/rust/src/dep_tests/Cargo.toml | 2 +- .../thrift/lib/rust/src/dep_tests/cargo_thrift/Cargo.toml | 4 ++-- 43 files changed, 59 insertions(+), 59 deletions(-) diff --git a/hphp/hack/src/Cargo.lock b/hphp/hack/src/Cargo.lock index 9b6a865a6b8..c5c4de4344d 100644 --- a/hphp/hack/src/Cargo.lock +++ b/hphp/hack/src/Cargo.lock @@ -92,9 +92,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.56" +version = "1.0.65" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4361135be9122e0870de935d7c439aef945b9f9ddd4199a553b5270b49c82a27" +checksum = "98161a4e3e2184da77bb14f02184cdd111e83bbbcc9979dfee3c44b9a85f5602" [[package]] name = "archery" @@ -4150,18 +4150,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.30" +version = "1.0.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" +checksum = "0a99cb8c4b9a8ef0e7907cd3b617cc8dc04d571c4e73c8ae403d80ac160bb122" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.30" +version = "1.0.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" +checksum = "3a891860d3c8d66fec8e73ddb3765f90082374dbaaa833407b904a94f1a7eb43" dependencies = [ "proc-macro2", "quote", diff --git a/hphp/hack/src/hackc/bytecode_printer/Cargo.toml b/hphp/hack/src/hackc/bytecode_printer/Cargo.toml index d37f155d80a..0b5e73ce686 100644 --- a/hphp/hack/src/hackc/bytecode_printer/Cargo.toml +++ b/hphp/hack/src/hackc/bytecode_printer/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" path = "lib.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" bstr = { version = "0.2", features = ["serde1"] } escaper = { path = "../../utils/escaper" } ffi = { path = "../../utils/ffi" } @@ -20,5 +20,5 @@ hhvm_types_ffi = { path = "../hhvm_cxx/hhvm_types" } itertools = "0.10.3" oxidized = { path = "../../oxidized" } print_opcode = { path = "print_opcode/cargo/lib" } -thiserror = "=1.0.30" +thiserror = "1.0.36" write_bytes = { path = "../../utils/write_bytes/write_bytes" } diff --git a/hphp/hack/src/hackc/cargo/hackc/Cargo.toml b/hphp/hack/src/hackc/cargo/hackc/Cargo.toml index 35c6cef164c..b0ae87784b7 100644 --- a/hphp/hack/src/hackc/cargo/hackc/Cargo.toml +++ b/hphp/hack/src/hackc/cargo/hackc/Cargo.toml @@ -10,7 +10,7 @@ path = "../../hackc/hackc.rs" [dependencies] aast_parser = { path = "../../../parser/cargo/aast_parser" } -anyhow = "1.0.56" +anyhow = "1.0.65" bc_to_ir = { path = "../../ir/conversions/bc_to_ir" } bstr = { version = "0.2", features = ["serde1"] } bumpalo = { version = "3.8", features = ["collections"] } @@ -62,5 +62,5 @@ strum = "0.21" strum_macros = "0.21" tempdir = "0.3" textual = { path = "../../ir/conversions/textual" } -thiserror = "=1.0.30" +thiserror = "1.0.36" ty = { path = "../../../hackrs/ty/cargo/ty" } diff --git a/hphp/hack/src/hackc/compile/cargo/compile/Cargo.toml b/hphp/hack/src/hackc/compile/cargo/compile/Cargo.toml index fa2def64999..5bf159b7c88 100644 --- a/hphp/hack/src/hackc/compile/cargo/compile/Cargo.toml +++ b/hphp/hack/src/hackc/compile/cargo/compile/Cargo.toml @@ -9,7 +9,7 @@ path = "../../compile.rs" [dependencies] aast_parser = { path = "../../../../parser/cargo/aast_parser" } -anyhow = "1.0.56" +anyhow = "1.0.65" bc_to_ir = { path = "../../../ir/conversions/bc_to_ir" } bumpalo = { version = "3.8", features = ["collections"] } bytecode_printer = { path = "../../../bytecode_printer" } @@ -31,5 +31,5 @@ profile_rust = { path = "../../../../utils/perf/cargo/profile" } rewrite_program = { path = "../rewrite_program" } serde = { version = "1.0.136", features = ["derive", "rc"] } stack_limit = { path = "../../../../utils/stack_limit" } -thiserror = "=1.0.30" +thiserror = "1.0.36" types = { path = "../../../types/cargo/types" } diff --git a/hphp/hack/src/hackc/decl_provider/Cargo.toml b/hphp/hack/src/hackc/decl_provider/Cargo.toml index 3f37f9905dc..042e2d5d32c 100644 --- a/hphp/hack/src/hackc/decl_provider/Cargo.toml +++ b/hphp/hack/src/hackc/decl_provider/Cargo.toml @@ -15,4 +15,4 @@ direct_decl_parser = { path = "../../parser/api/cargo/direct_decl_parser" } hash = { path = "../../utils/hash" } oxidized_by_ref = { path = "../../oxidized_by_ref" } sha-1 = "0.10" -thiserror = "=1.0.30" +thiserror = "1.0.36" diff --git a/hphp/hack/src/hackc/error/cargo/error/Cargo.toml b/hphp/hack/src/hackc/error/cargo/error/Cargo.toml index a54e7df59d6..42c595d0880 100644 --- a/hphp/hack/src/hackc/error/cargo/error/Cargo.toml +++ b/hphp/hack/src/hackc/error/cargo/error/Cargo.toml @@ -10,4 +10,4 @@ path = "../../error.rs" [dependencies] hhvm_hhbc_defs_ffi = { path = "../../../hhvm_cxx/hhvm_hhbc_defs" } oxidized = { path = "../../../../oxidized" } -thiserror = "=1.0.30" +thiserror = "1.0.36" diff --git a/hphp/hack/src/hackc/ffi_bridge/Cargo.toml b/hphp/hack/src/hackc/ffi_bridge/Cargo.toml index 8884e4dbe03..a1e80de9c60 100644 --- a/hphp/hack/src/hackc/ffi_bridge/Cargo.toml +++ b/hphp/hack/src/hackc/ffi_bridge/Cargo.toml @@ -9,7 +9,7 @@ path = "compiler_ffi.rs" crate-type = ["lib", "staticlib"] [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" bincode = "1.3.3" bumpalo = { version = "3.8", features = ["collections"] } compile = { path = "../compile/cargo/compile" } diff --git a/hphp/hack/src/hackc/hhbc/cargo/dump-opcodes/Cargo.toml b/hphp/hack/src/hackc/hhbc/cargo/dump-opcodes/Cargo.toml index 2a99c3ffe55..57f25bb87c1 100644 --- a/hphp/hack/src/hackc/hhbc/cargo/dump-opcodes/Cargo.toml +++ b/hphp/hack/src/hackc/hhbc/cargo/dump-opcodes/Cargo.toml @@ -9,7 +9,7 @@ name = "dump_opcodes" path = "../../dump_opcodes.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" emit_opcodes = { path = "../emit_opcodes" } hhbc-gen = { path = "../../../../../../tools/hhbc-gen" } quote = "1.0" diff --git a/hphp/hack/src/hackc/hhvm_config/cargo/options/Cargo.toml b/hphp/hack/src/hackc/hhvm_config/cargo/options/Cargo.toml index 2d03af0e489..e5e72c2caac 100644 --- a/hphp/hack/src/hackc/hhvm_config/cargo/options/Cargo.toml +++ b/hphp/hack/src/hackc/hhvm_config/cargo/options/Cargo.toml @@ -8,6 +8,6 @@ edition = "2021" path = "../../hhvm_config.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" hhvm_options = { path = "../../../../utils/hhvm_options" } options = { path = "../../../compile/cargo/options" } diff --git a/hphp/hack/src/hackc/ir/conversions/textual/Cargo.toml b/hphp/hack/src/hackc/ir/conversions/textual/Cargo.toml index 86ad5dac04a..c27ee1cf80b 100644 --- a/hphp/hack/src/hackc/ir/conversions/textual/Cargo.toml +++ b/hphp/hack/src/hackc/ir/conversions/textual/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" path = "lib.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" ascii = "1.0" hash = { path = "../../../../utils/hash" } ir = { path = "../.." } diff --git a/hphp/hack/src/hackc/ir/verify/Cargo.toml b/hphp/hack/src/hackc/ir/verify/Cargo.toml index d51d281c68e..aed05f1cc2c 100644 --- a/hphp/hack/src/hackc/ir/verify/Cargo.toml +++ b/hphp/hack/src/hackc/ir/verify/Cargo.toml @@ -9,7 +9,7 @@ path = "lib.rs" [dependencies] analysis = { path = "../analysis" } -anyhow = "1.0.56" +anyhow = "1.0.65" ir_core = { path = "../ir_core" } itertools = "0.10.3" print = { path = "../print" } diff --git a/hphp/hack/src/hackc/print_expr/Cargo.toml b/hphp/hack/src/hackc/print_expr/Cargo.toml index 3a3ac2c0d51..e7a32fcae52 100644 --- a/hphp/hack/src/hackc/print_expr/Cargo.toml +++ b/hphp/hack/src/hackc/print_expr/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" path = "lib.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" bstr = { version = "0.2", features = ["serde1"] } bumpalo = { version = "3.8", features = ["collections"] } core_utils_rust = { path = "../../utils/core" } @@ -21,5 +21,5 @@ lazy_static = "1.4" naming_special_names_rust = { path = "../../naming" } oxidized = { path = "../../oxidized" } regex = "1.5.4" -thiserror = "=1.0.30" +thiserror = "1.0.36" write_bytes = { path = "../../utils/write_bytes/write_bytes" } diff --git a/hphp/hack/src/hackc/sem_diff/Cargo.toml b/hphp/hack/src/hackc/sem_diff/Cargo.toml index 6af348c6d16..b21dcbc3df6 100644 --- a/hphp/hack/src/hackc/sem_diff/Cargo.toml +++ b/hphp/hack/src/hackc/sem_diff/Cargo.toml @@ -10,7 +10,7 @@ test = false doctest = false [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" ffi = { path = "../../utils/ffi" } hash = { path = "../../utils/hash" } hhbc = { path = "../hhbc/cargo/hhbc" } diff --git a/hphp/hack/src/hackrs/datastore/Cargo.toml b/hphp/hack/src/hackrs/datastore/Cargo.toml index 50c0d5dfcd6..0b1cc3dd02e 100644 --- a/hphp/hack/src/hackrs/datastore/Cargo.toml +++ b/hphp/hack/src/hackrs/datastore/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" path = "datastore.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" dashmap = { version = "4.0.2", features = ["rayon", "serde"] } hash = { path = "../../utils/hash" } parking_lot = { version = "0.11.2", features = ["send_guard"] } diff --git a/hphp/hack/src/hackrs/decl_parser/cargo/decl_parser/Cargo.toml b/hphp/hack/src/hackrs/decl_parser/cargo/decl_parser/Cargo.toml index 3e7157783fc..89b041ffbdf 100644 --- a/hphp/hack/src/hackrs/decl_parser/cargo/decl_parser/Cargo.toml +++ b/hphp/hack/src/hackrs/decl_parser/cargo/decl_parser/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" path = "../../decl_parser.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" arena_collections = { path = "../../../../arena_collections" } bumpalo = { version = "3.8", features = ["collections"] } direct_decl_parser = { path = "../../../../parser/api/cargo/direct_decl_parser" } diff --git a/hphp/hack/src/hackrs/depgraph_api/cargo/depgraph_api/Cargo.toml b/hphp/hack/src/hackrs/depgraph_api/cargo/depgraph_api/Cargo.toml index 8548676bb57..1c459ef9bba 100644 --- a/hphp/hack/src/hackrs/depgraph_api/cargo/depgraph_api/Cargo.toml +++ b/hphp/hack/src/hackrs/depgraph_api/cargo/depgraph_api/Cargo.toml @@ -10,5 +10,5 @@ path = "../../depgraph_api.rs" [dependencies] depgraph = { path = "../../../../depgraph/cargo/depgraph" } pos = { path = "../../../pos/cargo/pos" } -thiserror = "=1.0.30" +thiserror = "1.0.36" typing_deps_hash = { path = "../../../../deps/cargo/typing_deps_hash" } diff --git a/hphp/hack/src/hackrs/file_provider/cargo/file_provider/Cargo.toml b/hphp/hack/src/hackrs/file_provider/cargo/file_provider/Cargo.toml index 0388e2b150b..559a3aaf118 100644 --- a/hphp/hack/src/hackrs/file_provider/cargo/file_provider/Cargo.toml +++ b/hphp/hack/src/hackrs/file_provider/cargo/file_provider/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" path = "../../file_provider.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" bstr = { version = "0.2", features = ["serde1"] } pos = { path = "../../../pos/cargo/pos" } tempdir = "0.3" diff --git a/hphp/hack/src/hackrs/folded_decl_provider/cargo/folded_decl_provider/Cargo.toml b/hphp/hack/src/hackrs/folded_decl_provider/cargo/folded_decl_provider/Cargo.toml index 72560d8070a..234fe40e18f 100644 --- a/hphp/hack/src/hackrs/folded_decl_provider/cargo/folded_decl_provider/Cargo.toml +++ b/hphp/hack/src/hackrs/folded_decl_provider/cargo/folded_decl_provider/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" path = "../../folded_decl_provider.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" datastore = { path = "../../../datastore" } depgraph_api = { path = "../../../depgraph_api/cargo/depgraph_api" } eq_modulo_pos = { path = "../../../../utils/eq_modulo_pos" } @@ -18,5 +18,5 @@ oxidized = { path = "../../../../oxidized" } pos = { path = "../../../pos/cargo/pos" } shallow_decl_provider = { path = "../../../shallow_decl_provider/cargo/shallow_decl_provider" } special_names = { path = "../../../special_names/cargo/special_names" } -thiserror = "=1.0.30" +thiserror = "1.0.36" ty = { path = "../../../ty/cargo/ty" } diff --git a/hphp/hack/src/hackrs/hackrs_test/cargo/hackrs_test/Cargo.toml b/hphp/hack/src/hackrs/hackrs_test/cargo/hackrs_test/Cargo.toml index b47c488b8b9..6e9f4a1da42 100644 --- a/hphp/hack/src/hackrs/hackrs_test/cargo/hackrs_test/Cargo.toml +++ b/hphp/hack/src/hackrs/hackrs_test/cargo/hackrs_test/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" path = "../../hackrs_test.rs" [dev-dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" datastore = { path = "../../../datastore" } decl_parser = { path = "../../../decl_parser/cargo/decl_parser" } depgraph_api = { path = "../../../depgraph_api/cargo/depgraph_api" } diff --git a/hphp/hack/src/hackrs/hackrs_test_utils/cargo/hackrs_test_utils/Cargo.toml b/hphp/hack/src/hackrs/hackrs_test_utils/cargo/hackrs_test_utils/Cargo.toml index 6ca120168a8..21e5f0f34af 100644 --- a/hphp/hack/src/hackrs/hackrs_test_utils/cargo/hackrs_test_utils/Cargo.toml +++ b/hphp/hack/src/hackrs/hackrs_test_utils/cargo/hackrs_test_utils/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" path = "../../mod.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" bincode = "1.3.3" dashmap = { version = "4.0.2", features = ["rayon", "serde"] } datastore = { path = "../../../datastore" } diff --git a/hphp/hack/src/hackrs/naming_provider/cargo/naming_provider/Cargo.toml b/hphp/hack/src/hackrs/naming_provider/cargo/naming_provider/Cargo.toml index c75e5a6047d..98628d3845b 100644 --- a/hphp/hack/src/hackrs/naming_provider/cargo/naming_provider/Cargo.toml +++ b/hphp/hack/src/hackrs/naming_provider/cargo/naming_provider/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" path = "../../naming_provider.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" hh24_types = { path = "../../../../utils/hh24_types" } names = { path = "../../../../naming/names_rust" } oxidized = { path = "../../../../oxidized" } diff --git a/hphp/hack/src/hackrs/rupro/cargo/rupro/Cargo.toml b/hphp/hack/src/hackrs/rupro/cargo/rupro/Cargo.toml index 33abb3917b4..c027f22ad32 100644 --- a/hphp/hack/src/hackrs/rupro/cargo/rupro/Cargo.toml +++ b/hphp/hack/src/hackrs/rupro/cargo/rupro/Cargo.toml @@ -24,6 +24,6 @@ parser_core_types = { path = "../../../../parser/cargo/core_types" } pos = { path = "../../../pos/cargo/pos" } rust_aast_parser_types = { path = "../../../../parser/cargo/rust_aast_parser_types" } special_names = { path = "../../../special_names/cargo/special_names" } -thiserror = "=1.0.30" +thiserror = "1.0.36" ty = { path = "../../../ty/cargo/ty" } utils = { path = "../../../utils/cargo/utils" } diff --git a/hphp/hack/src/hackrs/shallow_decl_provider/cargo/shallow_decl_provider/Cargo.toml b/hphp/hack/src/hackrs/shallow_decl_provider/cargo/shallow_decl_provider/Cargo.toml index 4cff9d4ed8e..d8580d27011 100644 --- a/hphp/hack/src/hackrs/shallow_decl_provider/cargo/shallow_decl_provider/Cargo.toml +++ b/hphp/hack/src/hackrs/shallow_decl_provider/cargo/shallow_decl_provider/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" path = "../../shallow_decl_provider.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" datastore = { path = "../../../datastore" } decl_parser = { path = "../../../decl_parser/cargo/decl_parser" } itertools = "0.10.3" @@ -16,5 +16,5 @@ naming_provider = { path = "../../../naming_provider/cargo/naming_provider" } oxidized = { path = "../../../../oxidized" } pos = { path = "../../../pos/cargo/pos" } serde = { version = "1.0.136", features = ["derive", "rc"] } -thiserror = "=1.0.30" +thiserror = "1.0.36" ty = { path = "../../../ty/cargo/ty" } diff --git a/hphp/hack/src/hh_codegen/Cargo.toml b/hphp/hack/src/hh_codegen/Cargo.toml index 98d58a3fcdc..ea2b963765f 100644 --- a/hphp/hack/src/hh_codegen/Cargo.toml +++ b/hphp/hack/src/hh_codegen/Cargo.toml @@ -9,7 +9,7 @@ name = "hh_codegen" path = "hh_codegen.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" proc-macro2 = "1.0" quote = "1.0" signed_source = { path = "../utils/rust/signed_source" } diff --git a/hphp/hack/src/naming/names_rust/Cargo.toml b/hphp/hack/src/naming/names_rust/Cargo.toml index c2a281164c5..f2aa5f555bd 100644 --- a/hphp/hack/src/naming/names_rust/Cargo.toml +++ b/hphp/hack/src/naming/names_rust/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" path = "names.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" hh24_types = { path = "../../utils/hh24_types" } nohash-hasher = "0.2" oxidized = { path = "../../oxidized" } diff --git a/hphp/hack/src/ocamlrep_derive/Cargo.toml b/hphp/hack/src/ocamlrep_derive/Cargo.toml index a951b830e33..5c67cd288bf 100644 --- a/hphp/hack/src/ocamlrep_derive/Cargo.toml +++ b/hphp/hack/src/ocamlrep_derive/Cargo.toml @@ -17,5 +17,5 @@ syn = { version = "1.0.96", features = ["extra-traits", "fold", "full", "visit", synstructure = "0.12" [dev-dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" macro_test_util = { path = "../utils/test/macro_test_util" } diff --git a/hphp/hack/src/parser/lowerer/Cargo.toml b/hphp/hack/src/parser/lowerer/Cargo.toml index 6990fe78ac0..af699bbc4a6 100644 --- a/hphp/hack/src/parser/lowerer/Cargo.toml +++ b/hphp/hack/src/parser/lowerer/Cargo.toml @@ -24,4 +24,4 @@ parser_core_types = { path = "../cargo/core_types" } regex = "1.5.4" rescan_trivia = { path = "../api/cargo/rescan_trivia" } stack_limit = { path = "../../utils/stack_limit" } -thiserror = "=1.0.30" +thiserror = "1.0.36" diff --git a/hphp/hack/src/providers/hackrs_provider_backend/Cargo.toml b/hphp/hack/src/providers/hackrs_provider_backend/Cargo.toml index f5999906ad7..62a15d1b4d8 100644 --- a/hphp/hack/src/providers/hackrs_provider_backend/Cargo.toml +++ b/hphp/hack/src/providers/hackrs_provider_backend/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" path = "hackrs_provider_backend.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" bstr = { version = "0.2", features = ["serde1"] } bumpalo = { version = "3.8", features = ["collections"] } datastore = { path = "../../hackrs/datastore" } diff --git a/hphp/hack/src/rust_to_ocaml/rust_to_ocaml/Cargo.toml b/hphp/hack/src/rust_to_ocaml/rust_to_ocaml/Cargo.toml index 60dabf6f520..0961a7bce84 100644 --- a/hphp/hack/src/rust_to_ocaml/rust_to_ocaml/Cargo.toml +++ b/hphp/hack/src/rust_to_ocaml/rust_to_ocaml/Cargo.toml @@ -9,7 +9,7 @@ name = "rust_to_ocaml" path = "../src/rust_to_ocaml.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" attr_parser = { path = "../attr_parser" } clap = { version = "3.2.17", features = ["derive", "regex", "unicode", "wrap_help"] } convert_case = "0.4.0" diff --git a/hphp/hack/src/shmffi/cargo/shm_store/Cargo.toml b/hphp/hack/src/shmffi/cargo/shm_store/Cargo.toml index ccb5863a6d1..c0c2aa08931 100644 --- a/hphp/hack/src/shmffi/cargo/shm_store/Cargo.toml +++ b/hphp/hack/src/shmffi/cargo/shm_store/Cargo.toml @@ -11,7 +11,7 @@ doctest = false crate-type = ["lib", "staticlib"] [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" bincode = "1.3.3" datastore = { path = "../../../hackrs/datastore" } hash = { path = "../../../utils/hash" } diff --git a/hphp/hack/src/utils/ffi_cbindgen/Cargo.toml b/hphp/hack/src/utils/ffi_cbindgen/Cargo.toml index b1599a76615..c79edb13b79 100644 --- a/hphp/hack/src/utils/ffi_cbindgen/Cargo.toml +++ b/hphp/hack/src/utils/ffi_cbindgen/Cargo.toml @@ -9,6 +9,6 @@ name = "ffi_cbindgen" path = "ffi_cbindgen.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" cbindgen = "0.22.0" clap = { version = "3.2.17", features = ["derive", "regex", "unicode", "wrap_help"] } diff --git a/hphp/hack/src/utils/hdf/Cargo.toml b/hphp/hack/src/utils/hdf/Cargo.toml index b5391aaf9b9..bc2f4f6937c 100644 --- a/hphp/hack/src/utils/hdf/Cargo.toml +++ b/hphp/hack/src/utils/hdf/Cargo.toml @@ -10,7 +10,7 @@ crate-type = ["lib", "staticlib"] [dependencies] cxx = "1.0.76" -thiserror = "=1.0.30" +thiserror = "1.0.36" [build-dependencies] cxx-build = "1.0.76" diff --git a/hphp/hack/src/utils/hh24_types/Cargo.toml b/hphp/hack/src/utils/hh24_types/Cargo.toml index 688bf9bcb67..5357b67b770 100644 --- a/hphp/hack/src/utils/hh24_types/Cargo.toml +++ b/hphp/hack/src/utils/hh24_types/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" path = "hh24_types.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" depgraph = { path = "../../depgraph/cargo/depgraph" } derive_more = "0.99.17" hh_hash = { path = "../hh_hash" } @@ -17,5 +17,5 @@ oxidized_by_ref = { path = "../../oxidized_by_ref" } rusqlite = { version = "0.28.0", features = ["backup", "blob", "column_decltype"] } serde = { version = "1.0.136", features = ["derive", "rc"] } serde_json = { version = "1.0.79", features = ["float_roundtrip", "unbounded_depth"] } -thiserror = "=1.0.30" +thiserror = "1.0.36" typing_deps_hash = { path = "../../deps/cargo/typing_deps_hash" } diff --git a/hphp/hack/src/utils/hhvm_options/Cargo.toml b/hphp/hack/src/utils/hhvm_options/Cargo.toml index 1dc1206d835..9da0e597bff 100644 --- a/hphp/hack/src/utils/hhvm_options/Cargo.toml +++ b/hphp/hack/src/utils/hhvm_options/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" path = "hhvm_options.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" clap = { version = "3.2.17", features = ["derive", "regex", "unicode", "wrap_help"] } hdf = { path = "../hdf" } hhvm_runtime_options = { path = "hhvm_runtime_options/hhvm_runtime_options" } diff --git a/hphp/hack/src/utils/hhvm_options/hhvm_runtime_options/hhvm_runtime_options/Cargo.toml b/hphp/hack/src/utils/hhvm_options/hhvm_runtime_options/hhvm_runtime_options/Cargo.toml index cf7706e5d86..f7085c717d2 100644 --- a/hphp/hack/src/utils/hhvm_options/hhvm_runtime_options/hhvm_runtime_options/Cargo.toml +++ b/hphp/hack/src/utils/hhvm_options/hhvm_runtime_options/hhvm_runtime_options/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" path = "../lib.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" cxx = "1.0.76" hdf = { path = "../../../hdf" } log = { version = "0.4.14", features = ["kv_unstable", "kv_unstable_std"] } diff --git a/hphp/hack/src/utils/multifile/Cargo.toml b/hphp/hack/src/utils/multifile/Cargo.toml index 29a13598e14..e170c51b613 100644 --- a/hphp/hack/src/utils/multifile/Cargo.toml +++ b/hphp/hack/src/utils/multifile/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" path = "../multifile.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" lazy_static = "1.4" regex = "1.5.4" diff --git a/hphp/hack/src/utils/rust/signed_source/Cargo.toml b/hphp/hack/src/utils/rust/signed_source/Cargo.toml index d9986ad2822..a688d555fd4 100644 --- a/hphp/hack/src/utils/rust/signed_source/Cargo.toml +++ b/hphp/hack/src/utils/rust/signed_source/Cargo.toml @@ -13,4 +13,4 @@ hex = "0.4.3" md-5 = "0.10" once_cell = "1.12" regex = "1.5.4" -thiserror = "=1.0.30" +thiserror = "1.0.36" diff --git a/hphp/tools/hhbc-gen/Cargo.toml b/hphp/tools/hhbc-gen/Cargo.toml index 6d21905dfc1..ba2a2c3afff 100644 --- a/hphp/tools/hhbc-gen/Cargo.toml +++ b/hphp/tools/hhbc-gen/Cargo.toml @@ -13,5 +13,5 @@ maplit = "1.0" once_cell = "1.12" [build-dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" cc = "1.0" diff --git a/third-party/thrift/src/thrift/lib/rust/Cargo.toml b/third-party/thrift/src/thrift/lib/rust/Cargo.toml index 874dfaa720c..57aac64ccd2 100644 --- a/third-party/thrift/src/thrift/lib/rust/Cargo.toml +++ b/third-party/thrift/src/thrift/lib/rust/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" publish = false [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" async-trait = "0.1.56" base64 = "0.11.0" bufsize = "1.0" @@ -20,7 +20,7 @@ num-traits = "0.2" ordered-float = { version = "1.1.1", features = ["serde"] } panic-message = "0.3" serde_json = { version = "1.0.79", features = ["float_roundtrip", "unbounded_depth"] } -thiserror = "=1.0.30" +thiserror = "1.0.36" [dev-dependencies] quickcheck = "1.0" diff --git a/third-party/thrift/src/thrift/lib/rust/deterministic_hash/Cargo.toml b/third-party/thrift/src/thrift/lib/rust/deterministic_hash/Cargo.toml index 7e57fc2183d..56dc42cb42e 100644 --- a/third-party/thrift/src/thrift/lib/rust/deterministic_hash/Cargo.toml +++ b/third-party/thrift/src/thrift/lib/rust/deterministic_hash/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" publish = false [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" fbthrift = { path = ".." } ring = "0.16.20" -thiserror = "=1.0.30" +thiserror = "1.0.36" diff --git a/third-party/thrift/src/thrift/lib/rust/deterministic_hash/src/tests/Cargo.toml b/third-party/thrift/src/thrift/lib/rust/deterministic_hash/src/tests/Cargo.toml index c15f4890793..948b9efb5bf 100644 --- a/third-party/thrift/src/thrift/lib/rust/deterministic_hash/src/tests/Cargo.toml +++ b/third-party/thrift/src/thrift/lib/rust/deterministic_hash/src/tests/Cargo.toml @@ -21,7 +21,7 @@ name = "deterministic_hash_test" path = "deterministic_hash_test.rs" [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" async-trait = "0.1.56" codegen_includer_proc_macro = { path = "../../../../../../common/rust/shed/codegen_includer_proc_macro" } const-cstr = "0.3.0" @@ -33,7 +33,7 @@ ref-cast = "1.0.2" serde = { version = "1.0.136", features = ["derive", "rc"] } serde_derive = "1.0" smallvec = { version = "1.6.1", features = ["serde", "specialization", "union"] } -thiserror = "=1.0.30" +thiserror = "1.0.36" tracing = "0.1.35" tracing-futures = "0.2.5" diff --git a/third-party/thrift/src/thrift/lib/rust/src/dep_tests/Cargo.toml b/third-party/thrift/src/thrift/lib/rust/src/dep_tests/Cargo.toml index 5184bccfdbb..3fede856d5a 100644 --- a/third-party/thrift/src/thrift/lib/rust/src/dep_tests/Cargo.toml +++ b/third-party/thrift/src/thrift/lib/rust/src/dep_tests/Cargo.toml @@ -11,7 +11,7 @@ name = "fbthrift_test" path = "lib.rs" [dev-dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" fbthrift = { path = "../.." } fbthrift_test_if = { path = "cargo_thrift" } proptest = "1.0" diff --git a/third-party/thrift/src/thrift/lib/rust/src/dep_tests/cargo_thrift/Cargo.toml b/third-party/thrift/src/thrift/lib/rust/src/dep_tests/cargo_thrift/Cargo.toml index 1935a086bbb..8d3e61264e7 100644 --- a/third-party/thrift/src/thrift/lib/rust/src/dep_tests/cargo_thrift/Cargo.toml +++ b/third-party/thrift/src/thrift/lib/rust/src/dep_tests/cargo_thrift/Cargo.toml @@ -13,7 +13,7 @@ test = false doctest = false [dependencies] -anyhow = "1.0.56" +anyhow = "1.0.65" async-trait = "0.1.56" codegen_includer_proc_macro = { path = "../../../../../../common/rust/shed/codegen_includer_proc_macro" } const-cstr = "0.3.0" @@ -23,7 +23,7 @@ once_cell = "1.12" ref-cast = "1.0.2" serde = { version = "1.0.136", features = ["derive", "rc"] } serde_derive = "1.0" -thiserror = "=1.0.30" +thiserror = "1.0.36" tracing = "0.1.35" tracing-futures = "0.2.5" -- 2.11.4.GIT