Skip to content

Commit ba936d0

Browse files
quark-zjufacebook-github-bot
authored andcommitted
Upgrade dependencies used by streampager
Summary: Upgrade dependencies requested by facebook/sapling#1008, with the exceptions: - No change to `lru` and `indexmap`, because they want `hashbrown 0.15.2`, which fails to compile until Rust [1.84](rust-lang/rust@56ee492). ``` error[E0635]: unknown feature `strict_provenance_lints` --> third-party/rust/vendor/hashbrown-0.15.2/src/lib.rs:24:9 | 24 | strict_provenance_lints | ^^^^^^^^^^^^^^^^^^^^^^^ ``` - No change to `notify`. It specifies `fsevents-sys = "4.0.0"` and fails to compile: ``` error[E0425]: cannot find function, tuple struct or tuple variant `FSEventsGetCurrentEventId` in crate `fs` --> third-party/rust/vendor/notify-8.0.0/src/fsevent.rs:462:40 | 462 | let event_id = fs::FSEventsGetCurrentEventId(); | ^^^^^^^^^^^^^^^^^^^^^^^^^ not found in `fs` (`FSEventsGetCurrentEventId` was introduced in `fsevents-sys 4.1.0`) ``` - No change to `unicode-width` because phsym/prettytable-rs#165 (`prettytable-rs` does not pin the "good" version of `unicode-width` so `unicode-width` has to be globally pinned) - No change to `bit-set` to avoid incompatible types: ``` error[E0308]: mismatched types --> fbcode/hphp/hack/src/hackc/emitter/opt_body.rs:287:49 | 287 | avl_in.union_with(&BitSet::from_bit_vec(BitVec::from_elem(nparams, true))); | -------------------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `bit_vec::BitVec`, found `BitVec` | | | arguments to this function are incorrect | = note: `BitVec` and `bit_vec::BitVec` have similar names, but are actually distinct types note: `BitVec` is defined in crate `bit_vec` --> third-party/rust/vendor/bit-vec-0.6.2/src/lib.rs:210:1 note: `bit_vec::BitVec` is defined in crate `bit_vec` --> third-party/rust/vendor/bit-vec-0.8.0/src/lib.rs:249:1 = note: perhaps two different versions of crate `bit_vec` are being used? note: associated function defined here --> third-party/rust/vendor/bit-set-0.8.0/src/lib.rs:240:12 ``` - No change to `memmap2` since it seems to cause hack-www-test breakage. Reviewed By: zzl0 Differential Revision: D69427081 fbshipit-source-id: f520721fd4b828ae46c6b2d7875fa68eaafe603e
1 parent 654e5c4 commit ba936d0

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed

below/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ model = { package = "below-model", version = "0.8.1", path = "model" }
3535
once_cell = "1.12"
3636
plain = "0.2"
3737
procfs = { package = "fb_procfs", version = "0.8.1", path = "procfs" }
38-
regex = "1.9.2"
38+
regex = "1.11.1"
3939
serde_json = { version = "1.0.132", features = ["float_roundtrip", "unbounded_depth"] }
4040
signal-hook = "0.3"
4141
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
4242
slog-term = "2.8"
4343
store = { package = "below-store", version = "0.8.1", path = "store" }
4444
tar = "0.4.43"
45-
tempfile = "3.8"
45+
tempfile = "3.15"
4646
tokio = { version = "1.41.0", features = ["full", "test-util", "tracing"] }
4747
uzers = "0.11.3"
4848
view = { package = "below-view", version = "0.8.1", path = "view" }

below/cgroupfs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ thiserror = "2"
1919

2020
[dev-dependencies]
2121
paste = "1.0.14"
22-
tempfile = "3.8"
22+
tempfile = "3.15"

below/common/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ chrono = { version = "0.4", features = ["clock", "serde", "std"], default-featur
1515
cursive = { version = "0.20.0", features = ["crossterm-backend"], default-features = false }
1616
humantime = "2.1"
1717
once_cell = "1.12"
18-
regex = "1.9.2"
18+
regex = "1.11.1"
1919
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
2020
slog-term = "2.8"
2121
walkdir = "2.3"
2222

2323
[dev-dependencies]
24-
tempfile = "3.8"
24+
tempfile = "3.15"

below/config/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ anyhow = "1.0.95"
1414
btrfs = { package = "below-btrfs", version = "0.8.1", path = "../btrfs" }
1515
cgroupfs = { version = "0.8.1", path = "../cgroupfs" }
1616
serde = { version = "1.0.185", features = ["derive", "rc"] }
17-
toml = "0.8.4"
17+
toml = "0.8.19"
1818

1919
[dev-dependencies]
20-
tempfile = "3.8"
20+
tempfile = "3.15"

below/dump/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ common = { package = "below-common", version = "0.8.1", path = "../common" }
1717
enum-iterator = "1.4.1"
1818
model = { package = "below-model", version = "0.8.1", path = "../model" }
1919
once_cell = "1.12"
20-
regex = "1.9.2"
20+
regex = "1.11.1"
2121
render = { package = "below-render", version = "0.8.1", path = "../render" }
2222
serde_json = { version = "1.0.132", features = ["float_roundtrip", "unbounded_depth"] }
2323
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
2424
store = { package = "below-store", version = "0.8.1", path = "../store" }
2525
tar = "0.4.43"
26-
tempfile = "3.8"
27-
toml = "0.8.4"
26+
tempfile = "3.15"
27+
toml = "0.8.19"

below/model/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ gpu_stats = { package = "below-gpu-stats", version = "0.8.1", path = "../gpu_sta
2222
hostname = "0.3"
2323
os_info = "3.0.7"
2424
procfs = { package = "fb_procfs", version = "0.8.1", path = "../procfs" }
25-
regex = "1.9.2"
25+
regex = "1.11.1"
2626
resctrlfs = { version = "0.8.1", path = "../resctrlfs" }
2727
serde = { version = "1.0.185", features = ["derive", "rc"] }
2828
serde_json = { version = "1.0.132", features = ["float_roundtrip", "unbounded_depth"] }

below/procfs/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "Apache-2.0"
1212

1313
[dependencies]
1414
common = { package = "below-common", version = "0.8.1", path = "../common" }
15-
lazy_static = "1.4"
15+
lazy_static = "1.5"
1616
libc = "0.2.139"
1717
nix = { version = "0.29.0", features = ["dir", "event", "hostname", "inotify", "ioctl", "mman", "mount", "net", "poll", "ptrace", "reboot", "resource", "sched", "signal", "term", "time", "user", "zerocopy"] }
1818
openat = "0.1.21"
@@ -24,4 +24,4 @@ threadpool = "1.8.1"
2424

2525
[dev-dependencies]
2626
slog-term = "2.8"
27-
tempfile = "3.8"
27+
tempfile = "3.15"

below/resctrlfs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ thiserror = "2"
1919
[dev-dependencies]
2020
maplit = "1.0"
2121
paste = "1.0.14"
22-
tempfile = "3.8"
22+
tempfile = "3.15"

below/store/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ zstd-safe = { version = "7.0.0", features = ["std"] }
2727

2828
[dev-dependencies]
2929
itertools = "0.14.0"
30-
lazy_static = "1.4"
30+
lazy_static = "1.5"
3131
paste = "1.0.14"
3232
slog-term = "2.8"
33-
tempfile = "3.8"
33+
tempfile = "3.15"
3434
zstd = { version = "0.13", features = ["experimental", "zstdmt"] }
3535

3636
[features]

below/view/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ render = { package = "below-render", version = "0.8.1", path = "../render" }
2727
serde = { version = "1.0.185", features = ["derive", "rc"] }
2828
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
2929
store = { package = "below-store", version = "0.8.1", path = "../store" }
30-
toml = "0.8.4"
30+
toml = "0.8.19"
3131

3232
[dev-dependencies]
33-
tempfile = "3.8"
33+
tempfile = "3.15"

0 commit comments

Comments
 (0)