Skip to content

Commit

Permalink
update platform010 & platform010-aarch64 symlinks
Browse files Browse the repository at this point in the history
Summary:
Release notes: https://blog.rust-lang.org/2023/10/05/Rust-1.73.0.html

This release is coupled with an update of the `anyhow` and `thiserror` crates because the unstable standard library API for backtraces has changed.

Fbcode changes:

- `feature(default_free_fn)` deleted (D50300881)
- `noop_method_call` lint becomes warn-by-default (D50486032, D50516201)
- stronger `invalid_reference_casting` detection (D50488164)
- `feature(unix_chown)` has been stabilized
- `feature(provide_any)` and `std::provider` deleted
- `clippy::unwrap_or_else_default` renamed to `clippy::unwrap_or_default`
- type inference ambiguities (D51780425)
- `nu-command` build error (D51779062)

Reviewed By: AndreasBackx, shayne-fletcher

Differential Revision: D50294321

fbshipit-source-id: 0fac87f6ba072ad029f9ce41ce94ed813e855b20
  • Loading branch information
David Tolnay authored and facebook-github-bot committed Dec 2, 2023
1 parent 8db9260 commit a0513bf
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ phf = { version = "0.11", features = ["macros"] }
regex = "1.9.2"
rust_to_ocaml_attr = { path = "vendor/ocaml/interop/rust_to_ocaml/rust_to_ocaml_attr" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
thiserror = "1.0.43"
thiserror = "1.0.49"
tree-sitter = "0.20.8"
tree_sitter_python = { path = "vendor/tree-sitter-python" }
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ doctest = false
crate-type = ["lib", "staticlib"]

[dependencies]
anyhow = "=1.0.72"
anyhow = "1.0.75"
cargo_test_utils = { path = "../../../cargo_test_utils" }
ocamlrep = { path = "../.." }
ocamlrep_caml_builtins = { path = "../../../ocamlrep_caml_builtins" }
Expand Down
2 changes: 1 addition & 1 deletion vendor/ocaml/interop/ocamlrep_custom/test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ doctest = false
crate-type = ["lib", "staticlib"]

[dependencies]
anyhow = "=1.0.72"
anyhow = "1.0.75"
cargo_test_utils = { path = "../../cargo_test_utils" }
ocamlrep_custom = { path = ".." }
ocamlrep_ocamlpool = { path = "../../ocamlrep_ocamlpool" }
Expand Down
2 changes: 1 addition & 1 deletion vendor/ocaml/interop/ocamlrep_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ syn = { version = "1.0.109", features = ["extra-traits", "fold", "full", "visit"
synstructure = "0.12"

[dev-dependencies]
anyhow = "=1.0.72"
anyhow = "1.0.75"
macro_test_util = { path = "../macro_test_util" }
2 changes: 1 addition & 1 deletion vendor/ocaml/interop/ocamlrep_ocamlpool/test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ doctest = false
crate-type = ["lib", "staticlib"]

[dependencies]
anyhow = "=1.0.72"
anyhow = "1.0.75"
cargo_test_utils = { path = "../../cargo_test_utils" }
ocamlrep_ocamlpool = { path = ".." }
once_cell = "1.12"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ path = "rust_to_ocaml.rs"
test = false

[dependencies]
anyhow = "=1.0.72"
anyhow = "1.0.75"
attr_parser = { path = "../attr_parser" }
clap = { version = "3.2.25", features = ["derive", "env", "regex", "unicode", "wrap_help"] }
convert_case = "0.4.0"
Expand Down
2 changes: 1 addition & 1 deletion vendor/ocaml/interop/rust_to_ocaml/test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name = "test_rust_to_ocaml"
path = "test_rust_to_ocaml.rs"

[dependencies]
anyhow = "=1.0.72"
anyhow = "1.0.75"
clap = { version = "3.2.25", features = ["derive", "env", "regex", "unicode", "wrap_help"] }
similar = { version = "2.2.0", features = ["inline"] }
walkdir = "2.3"
4 changes: 2 additions & 2 deletions vendor/ocaml/interop/shim/third-party/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name = "top"
path = "top/main.rs"

[dependencies]
anyhow = "=1.0.72"
anyhow = "1.0.75"
bitflags = "1.3"
bstr = { version = "1.4.0", features = ["serde", "std", "unicode"] }
bumpalo = { version = "3.14.0", features = ["allocator_api", "collections"] }
Expand All @@ -30,6 +30,6 @@ similar = { version = "2.2.0", features = ["inline"] }
syn1 = { package = "syn", version = "1.0.109", features = ["extra-traits", "fold", "full", "visit", "visit-mut"] }
synstructure = "0.12"
tempfile = "3.8"
thiserror = "1.0.43"
thiserror = "1.0.49"
toml = "0.8.4"
walkdir = "2.3"
2 changes: 1 addition & 1 deletion vendor/ocaml/interop/signed_source/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ hex = "0.4.3"
md-5 = "0.10"
once_cell = "1.12"
regex = "1.9.2"
thiserror = "1.0.43"
thiserror = "1.0.49"

0 comments on commit a0513bf

Please sign in to comment.