Skip to content

Commit 06c6da6

Browse files
quark-zjufacebook-github-bot
authored andcommitted
Upgrade dependencies used by streampager
Summary: Upgrade dependencies requested by #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 d55f8e4 commit 06c6da6

File tree

118 files changed

+162
-162
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+162
-162
lines changed

eden/fs/cli_rs/edenfs-client/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "GPLv2+"
1111
anyhow = "1.0.95"
1212
async-recursion = "1.1.1"
1313
byteorder = "1.3"
14-
dirs = "2.0"
14+
dirs = "6.0"
1515
dunce = "1.0.2"
1616
edenfs-config = { version = "0.1.0", path = "../edenfs-config" }
1717
edenfs-error = { version = "0.1.0", path = "../edenfs-error" }
@@ -22,7 +22,7 @@ futures = { version = "0.3.30", features = ["async-await", "compat"] }
2222
hex = "0.4.3"
2323
hg_util = { package = "sapling-util", version = "0.1.0", path = "../../../scm/lib/util" }
2424
pathdiff = "0.2"
25-
regex = "1.9.2"
25+
regex = "1.11.1"
2626
sapling-atomicfile = { version = "0.1.0", path = "../../../scm/lib/atomicfile" }
2727
sapling-thrift-types = { version = "0.1.0", path = "../../../scm/lib/thrift-types" }
2828
sapling-util = { version = "0.1.0", path = "../../../scm/lib/util" }
@@ -36,15 +36,15 @@ thrift_streaming = { version = "0.1.0", path = "../../service/thrift_streaming"
3636
thrift_streaming_clients = { version = "0.1.0", path = "../../service/thrift_streaming/clients" }
3737
tokio = { version = "1.41.0", features = ["full", "test-util", "tracing"] }
3838
tokio-uds-compat = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
39-
toml = "0.8.4"
39+
toml = "0.8.19"
4040
tracing = { version = "0.1.41", features = ["attributes", "valuable"] }
4141
uuid = { version = "1.2", features = ["serde", "v4", "v5", "v6", "v7", "v8"] }
4242

4343
[dev-dependencies]
4444
fbinit-tokio = { version = "0.1.2", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
4545
rand = { version = "0.8", features = ["small_rng"] }
4646
serde_test = "1.0.167"
47-
tempfile = "3.8"
47+
tempfile = "3.15"
4848

4949
[target.'cfg(target_os = "macos")'.dependencies]
5050
psutil = "3.2.2"

eden/fs/cli_rs/edenfs-commands/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ sysinfo = "0.30.11"
3434
tabular = "0.2.0"
3535
termwiz = { version = "0.22", features = ["widgets"] }
3636
tokio = { version = "1.41.0", features = ["full", "test-util", "tracing"] }
37-
toml = "0.8.4"
37+
toml = "0.8.19"
3838
tracing = { version = "0.1.41", features = ["attributes", "valuable"] }
3939

4040
[dev-dependencies]
41-
tempfile = "3.8"
41+
tempfile = "3.15"
4242

4343
[target.'cfg(target_os = "linux")'.dependencies]
4444
shlex = "1.3"

eden/fs/cli_rs/edenfs-config/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ anyhow = "1.0.95"
1212
edenfs-error = { version = "0.1.0", path = "../edenfs-error" }
1313
serde = { version = "1.0.185", features = ["derive", "rc"] }
1414
stack-config = { version = "0.1.0", path = "../stack-config" }
15-
toml = "0.8.4"
15+
toml = "0.8.19"
1616
tracing = { version = "0.1.41", features = ["attributes", "valuable"] }

eden/fs/cli_rs/edenfs-utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ sysinfo = "0.30.11"
1515
tracing = { version = "0.1.41", features = ["attributes", "valuable"] }
1616

1717
[dev-dependencies]
18-
lazy_static = "1.4"
18+
lazy_static = "1.5"
1919

2020
[target.'cfg(target_os = "linux")'.dependencies]
2121
nix = { version = "0.29.0", features = ["dir", "event", "hostname", "inotify", "ioctl", "mman", "mount", "net", "poll", "ptrace", "reboot", "resource", "sched", "signal", "term", "time", "user", "zerocopy"] }

eden/fs/cli_rs/edenfsctl/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ tracing = { version = "0.1.41", features = ["attributes", "valuable"] }
1818
tracing-subscriber = { version = "0.3.18", features = ["chrono", "env-filter", "json", "local-time", "parking_lot", "registry"] }
1919

2020
[dev-dependencies]
21-
tempfile = "3.8"
21+
tempfile = "3.15"
2222

2323
[target.'cfg(target_os = "windows")'.dependencies]
2424
edenfs-utils = { version = "0.1.0", path = "../edenfs-utils" }

eden/fs/cli_rs/stack-config/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ stack-config-derive = { version = "0.1.0", path = "../stack-config-derive" }
1313

1414
[dev-dependencies]
1515
serde = { version = "1.0.185", features = ["derive", "rc"] }
16-
toml = "0.8.4"
16+
toml = "0.8.19"

eden/mononoke/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ mononoke_macros = { version = "0.1.0", path = "mononoke_macros" }
6666
mononoke_types = { version = "0.1.0", path = "mononoke_types" }
6767
packblob = { version = "0.1.0", path = "blobstore/packblob" }
6868
rand = { version = "0.8", features = ["small_rng"] }
69-
regex = "1.9.2"
69+
regex = "1.11.1"
7070
repo_blobstore = { version = "0.1.0", path = "blobrepo/repo_blobstore" }
7171
repo_derived_data = { version = "0.1.0", path = "repo_attributes/repo_derived_data" }
7272
repo_identity = { version = "0.1.0", path = "repo_attributes/repo_identity" }
@@ -77,7 +77,7 @@ serde_derive = "1.0.185"
7777
slog = { package = "tracing_slog_compat", version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
7878
sqlblob = { version = "0.1.0", path = "blobstore/sqlblob" }
7979
tokio = { version = "1.41.0", features = ["full", "test-util", "tracing"] }
80-
toml = "0.8.4"
80+
toml = "0.8.19"
8181

8282
[patch.crates-io]
8383
abomonation = { git = "https://github.com/markbt/abomonation", rev = "0f43346d2afa2aedc64d61f3f4273e8d1e454642" }

eden/mononoke/blobstore/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ memblob = { version = "0.1.0", path = "memblob" }
4141
mononoke_macros = { version = "0.1.0", path = "../mononoke_macros" }
4242
mononoke_types = { version = "0.1.0", path = "../mononoke_types" }
4343
sqlblob = { version = "0.1.0", path = "sqlblob" }
44-
tempfile = "3.8"
44+
tempfile = "3.15"

eden/mononoke/blobstore/ephemeral_blobstore/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ repo_blobstore = { version = "0.1.0", path = "../../blobrepo/repo_blobstore" }
3232
repo_identity = { version = "0.1.0", path = "../../repo_attributes/repo_identity" }
3333
scuba = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
3434
serde = { version = "1.0.185", features = ["derive", "rc"] }
35-
smallvec = { version = "1.6.1", features = ["serde", "specialization", "union"] }
35+
smallvec = { version = "1.13.2", features = ["serde", "specialization", "union"] }
3636
sql = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
3737
sql_construct = { version = "0.1.0", path = "../../common/sql_construct" }
3838
sql_ext = { version = "0.1.0", path = "../../common/rust/sql_ext" }

eden/mononoke/blobstore/fileblob/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ context = { version = "0.1.0", path = "../../server/context" }
1515
mononoke_macros = { version = "0.1.0", path = "../../mononoke_macros" }
1616
mononoke_types = { version = "0.1.0", path = "../../mononoke_types" }
1717
percent-encoding = "2.1"
18-
tempfile = "3.8"
18+
tempfile = "3.15"
1919
tokio = { version = "1.41.0", features = ["full", "test-util", "tracing"] }
2020
walkdir = "2.3"
2121

eden/mononoke/bonsai_git_mapping/if/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ futures = { version = "0.3.30", features = ["async-await", "compat"] }
2222
mononoke_types_serialization = { version = "0.1.0", path = "../../mononoke_types/serialization" }
2323
ref-cast = "1.0.18"
2424
rust = { version = "0.0.1+unstable", git = "https://github.com/facebook/fbthrift.git", branch = "main" }
25-
smallvec = { version = "1.6.1", features = ["serde", "specialization", "union"] }
25+
smallvec = { version = "1.13.2", features = ["serde", "specialization", "union"] }
2626
thiserror = "2"
2727

2828
[build-dependencies]

eden/mononoke/bonsai_hg_mapping/if/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ mercurial_thrift = { version = "0.1.0", path = "../../mercurial/types/if" }
2323
mononoke_types_serialization = { version = "0.1.0", path = "../../mononoke_types/serialization" }
2424
ref-cast = "1.0.18"
2525
rust = { version = "0.0.1+unstable", git = "https://github.com/facebook/fbthrift.git", branch = "main" }
26-
smallvec = { version = "1.6.1", features = ["serde", "specialization", "union"] }
26+
smallvec = { version = "1.13.2", features = ["serde", "specialization", "union"] }
2727
thiserror = "2"
2828

2929
[build-dependencies]

eden/mononoke/bookmarks/warm_bookmarks_cache/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ futures_watchdog = { version = "0.1.0", path = "../../common/futures_watchdog" }
3535
git_types = { version = "0.1.0", path = "../../git/git_types" }
3636
itertools = "0.14.0"
3737
justknobs = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
38-
lazy_static = "1.4"
38+
lazy_static = "1.5"
3939
lock_ext = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
4040
mercurial_derivation = { version = "0.1.0", path = "../../derived_data/mercurial_derivation" }
4141
mononoke_macros = { version = "0.1.0", path = "../../mononoke_macros" }

eden/mononoke/changesets/changesets_creation/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ futures = { version = "0.3.30", features = ["async-await", "compat"] }
1717
mononoke_types = { version = "0.1.0", path = "../../mononoke_types" }
1818
repo_blobstore = { version = "0.1.0", path = "../../blobrepo/repo_blobstore" }
1919
repo_identity = { version = "0.1.0", path = "../../repo_attributes/repo_identity" }
20-
smallvec = { version = "1.6.1", features = ["serde", "specialization", "union"] }
20+
smallvec = { version = "1.13.2", features = ["serde", "specialization", "union"] }
2121
topo_sort = { version = "0.1.0", path = "../../common/topo_sort" }
2222
vec1 = { version = "1", features = ["serde"] }

eden/mononoke/cmdlib/mononoke_app/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ mononoke_types = { version = "0.1.0", path = "../../mononoke_types" }
4747
permission_checker = { version = "0.1.0", path = "../../permission_checker" }
4848
prefixblob = { version = "0.1.0", path = "../../blobstore/prefixblob" }
4949
redactedblobstore = { version = "0.1.0", path = "../../blobstore/redactedblobstore" }
50-
regex = "1.9.2"
50+
regex = "1.11.1"
5151
rendezvous = { version = "0.1.0", path = "../../common/rendezvous" }
5252
repo_factory = { version = "0.1.0", path = "../../repo_factory" }
5353
running = { version = "0.1.0", path = "../../common/running" }

eden/mononoke/commit_cloud/helpers/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "GPLv2+"
1111
path = "lib.rs"
1212

1313
[dependencies]
14-
regex = "1.9.2"
14+
regex = "1.11.1"
1515

1616
[dev-dependencies]
1717
mononoke_macros = { version = "0.1.0", path = "../../mononoke_macros" }

eden/mononoke/commit_rewriting/cross_repo_sync/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ pushrebase_mutation_mapping = { version = "0.1.0", path = "../../pushrebase_muta
6161
rand = { version = "0.8", features = ["small_rng"] }
6262
readonlyblob = { version = "0.1.0", path = "../../blobstore/readonlyblob" }
6363
ref-cast = "1.0.18"
64-
regex = "1.9.2"
64+
regex = "1.11.1"
6565
repo_blobstore = { version = "0.1.0", path = "../../blobrepo/repo_blobstore" }
6666
repo_bookmark_attrs = { version = "0.1.0", path = "../../repo_attributes/repo_bookmark_attrs" }
6767
repo_cross_repo = { version = "0.1.0", path = "../../repo_attributes/repo_cross_repo" }

eden/mononoke/commit_rewriting/megarepo/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pushrebase = { version = "0.1.0", path = "../../pushrebase" }
4949
pushrebase_hooks = { version = "0.1.0", path = "../../pushrebase/pushrebase_hooks" }
5050
pushrebase_mutation_mapping = { version = "0.1.0", path = "../../pushrebase_mutation_mapping" }
5151
pushredirect = { version = "0.1.0", path = "../../megarepo_api/pushredirect" }
52-
regex = "1.9.2"
52+
regex = "1.11.1"
5353
repo_blobstore = { version = "0.1.0", path = "../../blobrepo/repo_blobstore" }
5454
repo_bookmark_attrs = { version = "0.1.0", path = "../../repo_attributes/repo_bookmark_attrs" }
5555
repo_cross_repo = { version = "0.1.0", path = "../../repo_attributes/repo_cross_repo" }

eden/mononoke/commit_rewriting/mononoke_x_repo_sync_job/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ mononoke_hg_sync_job_helper_lib = { version = "0.1.0", path = "../../mononoke_hg
3636
mononoke_types = { version = "0.1.0", path = "../../mononoke_types" }
3737
mutable_counters = { version = "0.1.0", path = "../../mutable_counters" }
3838
pushredirect = { version = "0.1.0", path = "../../megarepo_api/pushredirect" }
39-
regex = "1.9.2"
39+
regex = "1.11.1"
4040
repo_blobstore = { version = "0.1.0", path = "../../blobrepo/repo_blobstore" }
4141
repo_derived_data = { version = "0.1.0", path = "../../repo_attributes/repo_derived_data" }
4242
repo_identity = { version = "0.1.0", path = "../../repo_attributes/repo_identity" }

eden/mononoke/common/bounded_traversal/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license = "GPLv2+"
1010
[dependencies]
1111
either = "1.5"
1212
futures = { version = "0.3.30", features = ["async-await", "compat"] }
13-
smallvec = { version = "1.6.1", features = ["serde", "specialization", "union"] }
13+
smallvec = { version = "1.13.2", features = ["serde", "specialization", "union"] }
1414
thiserror = "2"
1515

1616
[dev-dependencies]

eden/mononoke/common/copy_utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ futures = { version = "0.3.30", features = ["async-await", "compat"] }
2020
justknobs = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
2121
manifest = { version = "0.1.0", path = "../../manifest" }
2222
mononoke_types = { version = "0.1.0", path = "../../mononoke_types" }
23-
regex = "1.9.2"
23+
regex = "1.11.1"
2424
repo_blobstore = { version = "0.1.0", path = "../../blobrepo/repo_blobstore" }
2525
repo_derived_data = { version = "0.1.0", path = "../../repo_attributes/repo_derived_data" }
2626
repo_identity = { version = "0.1.0", path = "../../repo_attributes/repo_identity" }

eden/mononoke/derived_data/changeset_info/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ derived_data_service_if = { version = "0.1.0", path = "../remote/if" }
2121
fbthrift = { version = "0.0.1+unstable", git = "https://github.com/facebook/fbthrift.git", branch = "main" }
2222
mononoke_types = { version = "0.1.0", path = "../../mononoke_types" }
2323
mononoke_types_serialization = { version = "0.1.0", path = "../../mononoke_types/serialization" }
24-
smallvec = { version = "1.6.1", features = ["serde", "specialization", "union"] }
24+
smallvec = { version = "1.13.2", features = ["serde", "specialization", "union"] }
2525
sorted_vector_map = { version = "0.2.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
26-
unicode-segmentation = "1.6.0"
26+
unicode-segmentation = "1.12.0"
2727

2828
[dev-dependencies]
2929
bonsai_hg_mapping = { version = "0.1.0", path = "../../bonsai_hg_mapping" }

eden/mononoke/derived_data/remote/if/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ mercurial_thrift = { version = "0.1.0", path = "../../../mercurial/types/if" }
2626
mononoke_types_serialization = { version = "0.1.0", path = "../../../mononoke_types/serialization" }
2727
ref-cast = "1.0.18"
2828
rust = { version = "0.0.1+unstable", git = "https://github.com/facebook/fbthrift.git", branch = "main" }
29-
smallvec = { version = "1.6.1", features = ["serde", "specialization", "union"] }
29+
smallvec = { version = "1.13.2", features = ["serde", "specialization", "union"] }
3030
thiserror = "2"
3131

3232
[build-dependencies]

eden/mononoke/edenapi_service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ http = "0.2"
3636
hyper = { version = "0.14.26", features = ["client", "http1", "http2", "stream"] }
3737
itertools = "0.14.0"
3838
justknobs = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
39-
lazy_static = "1.4"
39+
lazy_static = "1.5"
4040
manifest = { version = "0.1.0", path = "../manifest" }
4141
maplit = "1.0"
4242
mercurial_types = { version = "0.1.0", path = "../mercurial/types" }

eden/mononoke/features/repo_update_logger/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ mononoke_types = { version = "0.1.0", path = "../../mononoke_types" }
3232
once_cell = "1.12"
3333
permission_checker = { version = "0.1.0", path = "../../permission_checker" }
3434
phases = { version = "0.1.0", path = "../../phases" }
35-
regex = "1.9.2"
35+
regex = "1.11.1"
3636
repo_blobstore = { version = "0.1.0", path = "../../blobrepo/repo_blobstore" }
3737
repo_identity = { version = "0.1.0", path = "../../repo_attributes/repo_identity" }
3838
serde = { version = "1.0.185", features = ["derive", "rc"] }

eden/mononoke/filenodes/if/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ mercurial_thrift = { version = "0.1.0", path = "../../mercurial/types/if" }
2323
mononoke_types_serialization = { version = "0.1.0", path = "../../mononoke_types/serialization" }
2424
ref-cast = "1.0.18"
2525
rust = { version = "0.0.1+unstable", git = "https://github.com/facebook/fbthrift.git", branch = "main" }
26-
smallvec = { version = "1.6.1", features = ["serde", "specialization", "union"] }
26+
smallvec = { version = "1.13.2", features = ["serde", "specialization", "union"] }
2727
thiserror = "2"
2828

2929
[build-dependencies]

eden/mononoke/filestore/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ assert_matches = "1.5"
3636
borrowed = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
3737
fbinit = { version = "0.2.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
3838
fbinit-tokio = { version = "0.1.2", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
39-
lazy_static = "1.4"
39+
lazy_static = "1.5"
4040
memblob = { version = "0.1.0", path = "../blobstore/memblob" }
4141
mononoke_types-mocks = { version = "0.1.0", path = "../mononoke_types/mocks" }
4242
quickcheck = "1.0"

eden/mononoke/git/git_types/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ gix-actor = "0.33.1"
2828
gix-hash = "0.15.1"
2929
gix-object = "0.46.0"
3030
itertools = "0.14.0"
31-
lazy_static = "1.4"
31+
lazy_static = "1.5"
3232
manifest = { version = "0.1.0", path = "../../manifest" }
3333
megarepo_error = { version = "0.1.0", path = "../../megarepo_api/megarepo_error" }
3434
metaconfig_types = { version = "0.1.0", path = "../../metaconfig/types" }
3535
mononoke_macros = { version = "0.1.0", path = "../../mononoke_macros" }
3636
mononoke_types = { version = "0.1.0", path = "../../mononoke_types" }
3737
mononoke_types_serialization = { version = "0.1.0", path = "../../mononoke_types/serialization" }
3838
packfile = { version = "0.1.0", path = "../packfile" }
39-
regex = "1.9.2"
39+
regex = "1.11.1"
4040
repo_derived_data = { version = "0.1.0", path = "../../repo_attributes/repo_derived_data" }
4141
sha1 = "0.10.5"
4242
sorted_vector_map = { version = "0.2.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
@@ -61,4 +61,4 @@ memblob = { version = "0.1.0", path = "../../blobstore/memblob" }
6161
rand_distr = "0.4"
6262
repo_blobstore = { version = "0.1.0", path = "../../blobrepo/repo_blobstore" }
6363
repo_identity = { version = "0.1.0", path = "../../repo_attributes/repo_identity" }
64-
tempfile = "3.8"
64+
tempfile = "3.15"

eden/mononoke/git/git_types/if/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ futures = { version = "0.3.30", features = ["async-await", "compat"] }
2323
mononoke_types_serialization = { version = "0.1.0", path = "../../../mononoke_types/serialization" }
2424
ref-cast = "1.0.18"
2525
rust = { version = "0.0.1+unstable", git = "https://github.com/facebook/fbthrift.git", branch = "main" }
26-
smallvec = { version = "1.6.1", features = ["serde", "specialization", "union"] }
26+
smallvec = { version = "1.13.2", features = ["serde", "specialization", "union"] }
2727
thiserror = "2"
2828

2929
[build-dependencies]

eden/mononoke/git/import_tools/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ retry = { version = "0.1.0", path = "../../common/retry" }
5050
sapling-clientinfo = { version = "0.1.0", path = "../../../scm/lib/clientinfo" }
5151
scuba_ext = { version = "0.1.0", path = "../../common/scuba_ext" }
5252
slog = { package = "tracing_slog_compat", version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
53-
smallvec = { version = "1.6.1", features = ["serde", "specialization", "union"] }
53+
smallvec = { version = "1.13.2", features = ["serde", "specialization", "union"] }
5454
sorted_vector_map = { version = "0.2.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
5555
tls = { version = "0.1.0", path = "../../cmdlib/mononoke_app/tls" }
5656
tokio = { version = "1.41.0", features = ["full", "test-util", "tracing"] }

eden/mononoke/git/packfile/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ fbinit = { version = "0.2.0", git = "https://github.com/facebookexperimental/rus
3636
fbinit-tokio = { version = "0.1.2", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
3737
git_delta = { version = "0.1.0", path = "../../third_party/git_delta" }
3838
mononoke_macros = { version = "0.1.0", path = "../../mononoke_macros" }
39-
tempfile = "3.8"
39+
tempfile = "3.15"

eden/mononoke/git/protocol/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ repo_derived_data = { version = "0.1.0", path = "../../repo_attributes/repo_deri
4343
repo_identity = { version = "0.1.0", path = "../../repo_attributes/repo_identity" }
4444
rustc-hash = "2.1.0"
4545
scuba_ext = { version = "0.1.0", path = "../../common/scuba_ext" }
46-
tempfile = "3.8"
46+
tempfile = "3.15"
4747
tokio = { version = "1.41.0", features = ["full", "test-util", "tracing"] }

eden/mononoke/git_server/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ hyper = { version = "0.14.26", features = ["client", "http1", "http2", "stream"]
4141
import_direct = { version = "0.1.0", path = "../git/import_direct" }
4242
import_tools = { version = "0.1.0", path = "../git/import_tools" }
4343
justknobs = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
44-
lazy_static = "1.4"
44+
lazy_static = "1.5"
4545
metaconfig_parser = { version = "0.1.0", path = "../metaconfig/parser" }
4646
metaconfig_types = { version = "0.1.0", path = "../metaconfig/types" }
4747
mime = "0.3.14"

eden/mononoke/hooks/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ hyper-tls = "0.5"
2626
ipnetwork = "0.20.0"
2727
itertools = "0.14.0"
2828
justknobs = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
29-
lazy_static = "1.4"
29+
lazy_static = "1.5"
3030
manifest = { version = "0.1.0", path = "../manifest" }
3131
maplit = "1.0"
3232
mercurial_types = { version = "0.1.0", path = "../mercurial/types" }
3333
metaconfig_types = { version = "0.1.0", path = "../metaconfig/types" }
3434
mononoke_types = { version = "0.1.0", path = "../mononoke_types" }
3535
permission_checker = { version = "0.1.0", path = "../permission_checker" }
36-
regex = "1.9.2"
36+
regex = "1.11.1"
3737
sapling-clientinfo = { version = "0.1.0", path = "../../scm/lib/clientinfo" }
3838
scuba_ext = { version = "0.1.0", path = "../common/scuba_ext" }
3939
serde = { version = "1.0.185", features = ["derive", "rc"] }

0 commit comments

Comments
 (0)