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 d5767fe commit f807f62
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion below/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ unit-name = "below"
unit-scripts = "../etc"

[dependencies]
anyhow = "=1.0.72"
anyhow = "1.0.75"
cgroupfs = { version = "0.7.1", path = "cgroupfs" }
clap = { version = "4.4.7", features = ["derive", "env", "string", "unicode", "wrap_help"] }
clap_complete = "4.4.4"
Expand Down
2 changes: 1 addition & 1 deletion below/btrfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ rand = { version = "0.8", features = ["small_rng"] }
rand_distr = "0.4"
serde = { version = "1.0.185", features = ["derive", "rc"] }
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
thiserror = "1.0.43"
thiserror = "1.0.49"
2 changes: 1 addition & 1 deletion below/cgroupfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ license = "Apache-2.0"
nix = "0.25"
openat = "0.1.21"
serde = { version = "1.0.185", features = ["derive", "rc"] }
thiserror = "1.0.43"
thiserror = "1.0.49"

[dev-dependencies]
paste = "1.0.14"
Expand Down
2 changes: 1 addition & 1 deletion below/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/facebookincubator/below"
license = "Apache-2.0"

[dependencies]
anyhow = "=1.0.72"
anyhow = "1.0.75"
chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false }
cursive = { version = "0.20.0", features = ["crossterm-backend"], default-features = false }
humantime = "2.1"
Expand Down
2 changes: 1 addition & 1 deletion below/config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/facebookincubator/below"
license = "Apache-2.0"

[dependencies]
anyhow = "=1.0.72"
anyhow = "1.0.75"
btrfs = { package = "below-btrfs", version = "0.7.1", path = "../btrfs" }
cgroupfs = { version = "0.7.1", path = "../cgroupfs" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
Expand Down
2 changes: 1 addition & 1 deletion below/dump/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/facebookincubator/below"
license = "Apache-2.0"

[dependencies]
anyhow = "=1.0.72"
anyhow = "1.0.75"
below_derive = { version = "0.7.1", path = "../below_derive" }
clap = { version = "4.4.7", features = ["derive", "env", "string", "unicode", "wrap_help"] }
common = { package = "below-common", version = "0.7.1", path = "../common" }
Expand Down
2 changes: 1 addition & 1 deletion below/ethtool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ license = "Apache-2.0"
[dependencies]
nix = "0.25"
serde = { version = "1.0.185", features = ["derive", "rc"] }
thiserror = "1.0.43"
thiserror = "1.0.49"
2 changes: 1 addition & 1 deletion below/model/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/facebookincubator/below"
license = "Apache-2.0"

[dependencies]
anyhow = "=1.0.72"
anyhow = "1.0.75"
async-trait = "0.1.71"
below_derive = { version = "0.7.1", path = "../below_derive" }
btrfs = { package = "below-btrfs", version = "0.7.1", path = "../btrfs" }
Expand Down
2 changes: 1 addition & 1 deletion below/procfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ nix = "0.25"
openat = "0.1.21"
serde = { version = "1.0.185", features = ["derive", "rc"] }
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
thiserror = "1.0.43"
thiserror = "1.0.49"
threadpool = "1.8.1"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion below/store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/facebookincubator/below"
license = "Apache-2.0"

[dependencies]
anyhow = "=1.0.72"
anyhow = "1.0.75"
bitflags = "1.3"
bytes = { version = "1.1", features = ["serde"] }
common = { package = "below-common", version = "0.7.1", path = "../common" }
Expand Down
2 changes: 1 addition & 1 deletion below/view/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/facebookincubator/below"
license = "Apache-2.0"

[dependencies]
anyhow = "=1.0.72"
anyhow = "1.0.75"
chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false }
common = { package = "below-common", version = "0.7.1", path = "../common" }
crossterm = { version = "0.27.0", features = ["event-stream"] }
Expand Down

0 comments on commit f807f62

Please sign in to comment.