Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion common/rust/shed/fbinit/fbinit-tokio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ path = "lib.rs"

[dependencies]
futures = { version = "0.3.31", features = ["async-await", "compat"] }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
2 changes: 1 addition & 1 deletion common/rust/shed/futures_ext/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ futures = { version = "0.3.31", features = ["async-await", "compat"] }
pin-project = "1.1.11"
shared_error = { version = "0.1.0", path = "../shared_error" }
thiserror = "2.0.18"
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }

[dev-dependencies]
assert_matches = "1.5"
Expand Down
2 changes: 1 addition & 1 deletion common/rust/shed/futures_stats/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ path = "test/main.rs"
[dependencies]
futures = { version = "0.3.31", features = ["async-await", "compat"] }
futures_ext = { version = "0.1.0", path = "../futures_ext" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
2 changes: 1 addition & 1 deletion common/rust/shed/stats/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fbinit = { version = "0.2.0", path = "../fbinit" }
futures = { version = "0.3.31", features = ["async-await", "compat"] }
perthread = { version = "0.1.0", path = "../perthread" }
stats_traits = { version = "0.1.0", path = "traits" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
Copy link

Copilot AI Apr 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR description says this change upgrades tokio from 1.50.0 to 1.52.1, but the repo still has manifests with older tokio requirements (e.g. eden/fs/cli_rs/edenfs-client depends on 1.47.1, and watchman/rust/watchman_client depends on 1.45). Please either expand this PR to update the remaining manifests, or clarify in the description that only the 1.50.0 pins are being updated.

Copilot uses AI. Check for mistakes.
tokio-stream = { version = "0.1.18", features = ["fs", "io-util", "net", "signal", "sync", "time"] }

[lints]
Expand Down
2 changes: 1 addition & 1 deletion common/rust/shed/tokio-uds-compat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/facebookexperimental/rust-shed"
license = "MIT OR Apache-2.0"

[dependencies]
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }

[dev-dependencies]
futures = { version = "0.3.31", features = ["async-await", "compat"] }
Expand Down
2 changes: 1 addition & 1 deletion eden/fs/cli_rs/edenfs-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ mockall = "0.13.1"
rand = "0.10"
serde_test = "1.0.167"
tempfile = "3.22"
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
Copy link

Copilot AI Apr 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tokio is now specified as 1.52.1 under [dev-dependencies], but this crate still declares tokio = { version = "1.47.1", ... } under [dependencies]. Even though Cargo can unify these via caret requirements, keeping different minimum versions in the same manifest is confusing and can lead to unexpected resolution differences across build modes. Consider bumping the [dependencies] entry to 1.52.1 as well (or otherwise aligning the version specs).

Copilot uses AI. Check for mistakes.

[target.'cfg(target_os = "macos")'.dependencies]
psutil = "3.2.2"
Expand Down
2 changes: 1 addition & 1 deletion eden/fs/cli_rs/edenfs-error/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ anyhow = "1.0.102"
sapling-thrift-types = { version = "0.1.0", path = "../../../scm/lib/thrift-types" }
thiserror = "2.0.18"
thrift_streaming_clients = { version = "0.1.0", path = "../../service/thrift_streaming/clients" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
2 changes: 1 addition & 1 deletion eden/fs/cli_rs/sapling-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ anyhow = "1.0.102"
async_process_traits = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
lru-cache = "0.1.2"
thiserror = "2.0.18"
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }

[dev-dependencies]
edenfs-client = { version = "0.1.0", path = "../edenfs-client" }
Expand Down
2 changes: 1 addition & 1 deletion eden/fs/rust/edenfs-asserted-states/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ sapling-spawn-ext = { version = "0.1.0", path = "../../../scm/lib/spawn-ext" }
sapling-util = { version = "0.1.0", path = "../../../scm/lib/util" }
serde = { version = "1.0.219", features = ["derive", "rc"] }
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "raw_value", "unbounded_depth"] }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
tracing = { version = "0.1.41", features = ["attributes", "valuable"] }
whoami = "1.5"
2 changes: 1 addition & 1 deletion eden/fs/rust/redirect_ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ anyhow = "1.0.102"
cxx = "1.0.119"
cxxerror = { version = "0.1.0", path = "../../../scm/lib/edenfs_ffi/cxxerror" }
edenfs-client = { version = "0.1.0", path = "../../cli_rs/edenfs-client" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
2 changes: 1 addition & 1 deletion eden/mononoke/benchmarks/filestore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ mononoke_types = { version = "0.1.0", path = "../../mononoke_types" }
prefixblob = { version = "0.1.0", path = "../../blobstore/prefixblob" }
rand = "0.10"
throttledblob = { version = "0.1.0", path = "../../blobstore/throttledblob" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
tokio-util = { version = "0.7.18", features = ["full"] }
2 changes: 1 addition & 1 deletion eden/mononoke/benchmarks/storage_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ futures = { version = "0.3.31", features = ["async-await", "compat"] }
mononoke_app = { version = "0.1.0", path = "../../cmdlib/mononoke_app" }
rand = "0.10"
repo_factory = { version = "0.1.0", path = "../../repo_factory" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
2 changes: 1 addition & 1 deletion eden/mononoke/blobimport_lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ repo_blobstore = { version = "0.1.0", path = "../repo_attributes/repo_blobstore"
repo_derived_data = { version = "0.1.0", path = "../repo_attributes/repo_derived_data" }
repo_identity = { version = "0.1.0", path = "../repo_attributes/repo_identity" }
synced_commit_mapping = { version = "0.1.0", path = "../features/commit_rewriting/synced_commit_mapping" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
tracing = { version = "0.1.41", features = ["attributes", "valuable"] }
2 changes: 1 addition & 1 deletion eden/mononoke/blobrepo_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ repo_blobstore = { version = "0.1.0", path = "../repo_attributes/repo_blobstore"
repo_derived_data = { version = "0.1.0", path = "../repo_attributes/repo_derived_data" }
restricted_paths = { version = "0.1.0", path = "../repo_attributes/restricted_paths" }
thiserror = "2.0.18"
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
tokio-stream = { version = "0.1.18", features = ["fs", "io-util", "net", "signal", "sync", "time"] }
tracing = { version = "0.1.41", features = ["attributes", "valuable"] }

Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/blobstore/cacheblob/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ mononoke_types = { version = "0.1.0", path = "../../mononoke_types" }
prefixblob = { version = "0.1.0", path = "../prefixblob" }
redactedblobstore = { version = "0.1.0", path = "../redactedblobstore" }
stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
tracing = { version = "0.1.41", features = ["attributes", "valuable"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/blobstore/delayblob/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ context = { version = "0.1.0", path = "../../servers/slapi/slapi_server/context"
mononoke_types = { version = "0.1.0", path = "../../mononoke_types" }
rand = "0.10"
rand_distr = "0.6"
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
2 changes: 1 addition & 1 deletion eden/mononoke/blobstore/ephemeral_blobstore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ sql_construct = { version = "0.1.0", path = "../../common/sql_construct" }
sql_ext = { version = "0.1.0", path = "../../common/rust/sql_ext" }
sql_query_config = { version = "0.1.0", path = "../../repo_attributes/sql_query_config" }
thiserror = "2.0.18"
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
vec1 = { version = "1.12.1", features = ["serde"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/blobstore/factory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ sql_construct = { version = "0.1.0", path = "../../common/sql_construct" }
sql_ext = { version = "0.1.0", path = "../../common/rust/sql_ext" }
sqlblob = { version = "0.1.0", path = "../sqlblob" }
throttledblob = { version = "0.1.0", path = "../throttledblob" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
2 changes: 1 addition & 1 deletion eden/mononoke/blobstore/fileblob/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ mononoke_macros = { version = "0.1.0", path = "../../common/mononoke_macros" }
mononoke_types = { version = "0.1.0", path = "../../mononoke_types" }
percent-encoding = "2.1"
tempfile = "3.27.0"
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
walkdir = "2.3"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/blobstore/multiplexedblob/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ once_cell = "1.21.4"
scuba_ext = { version = "0.1.0", path = "../../common/scuba_ext" }
strum = { version = "0.27.1", features = ["derive"] }
thiserror = "2.0.18"
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
tracing = { version = "0.1.41", features = ["attributes", "valuable"] }
twox-hash = "1.6.1"
2 changes: 1 addition & 1 deletion eden/mononoke/blobstore/multiplexedblob_wal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ multiplexedblob = { version = "0.1.0", path = "../multiplexedblob" }
scuba_ext = { version = "0.1.0", path = "../../common/scuba_ext" }
thiserror = "2.0.18"
time_ext = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }

[dev-dependencies]
blobstore_test_utils = { version = "0.1.0", path = "../test_utils" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/blobstore/s3blob/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ rusoto_credential = "0.48.0"
rusoto_s3 = "0.48.0"
rusoto_sts = "0.48.0"
time_ext = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
2 changes: 1 addition & 1 deletion eden/mononoke/blobstore/sqlblob/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "raw
sql = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
sql_ext = { version = "0.1.0", path = "../../common/rust/sql_ext" }
stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
tokio-stream = { version = "0.1.18", features = ["fs", "io-util", "net", "signal", "sync", "time"] }
twox-hash = "1.6.1"
vec1 = { version = "1.12.1", features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/blobstore/test_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ futures = { version = "0.3.31", features = ["async-await", "compat"] }
lock_ext = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
metaconfig_types = { version = "0.1.0", path = "../../metaconfig/types" }
mononoke_types = { version = "0.1.0", path = "../../mononoke_types" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ scopeguard = "1.2.0"
shared_error = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
time_ext = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
twox-hash = "1.6.1"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/cmdlib/config_args/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ clap = { version = "4.6.0", features = ["derive", "env", "string", "unicode", "w
fbinit = { version = "0.2.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
justknobs = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
mononoke_configs = { version = "0.1.0", path = "../../common/mononoke_configs" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
2 changes: 1 addition & 1 deletion eden/mononoke/cmdlib/environment/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ sapling-clientinfo = { version = "0.1.0", path = "../../../scm/lib/clientinfo" }
scuba_ext = { version = "0.1.0", path = "../../common/scuba_ext" }
sql_ext = { version = "0.1.0", path = "../../common/rust/sql_ext" }
strum = { version = "0.27.1", features = ["derive"] }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
2 changes: 1 addition & 1 deletion eden/mononoke/cmdlib/mononoke_app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ sql_ext = { version = "0.1.0", path = "../../common/rust/sql_ext" }
stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
strum = { version = "0.27.1", features = ["derive"] }
tls = { version = "0.1.0", path = "tls" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
tracing = { version = "0.1.41", features = ["attributes", "valuable"] }
2 changes: 1 addition & 1 deletion eden/mononoke/cmdlib/sharding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ fbinit = { version = "0.2.0", git = "https://github.com/facebookexperimental/rus
futures = { version = "0.3.31", features = ["async-await", "compat"] }
sharding_ext = { version = "0.1.0", path = "../sharding_ext" }
stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
tracing = { version = "0.1.41", features = ["attributes", "valuable"] }
2 changes: 1 addition & 1 deletion eden/mononoke/common/assembly_line/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ futures = { version = "0.3.31", features = ["async-await", "compat"] }
pin-project = "1.1.11"

[dev-dependencies]
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
2 changes: 1 addition & 1 deletion eden/mononoke/common/async_limiter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ thiserror = "2.0.18"

[dev-dependencies]
nonzero_ext = "0.2"
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ chrono = { version = "0.4.44", features = ["clock", "serde", "std"], default-fea
futures = { version = "0.3.31", features = ["async-await", "compat"] }
governor = "0.10.4"
nonzero_ext = "0.2"
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
2 changes: 1 addition & 1 deletion eden/mononoke/common/cas_client/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ futures = { version = "0.3.31", features = ["async-await", "compat"] }
futures_ext = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
mononoke_types = { version = "0.1.0", path = "../../../mononoke_types" }
thiserror = "2.0.18"
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
tracing = { version = "0.1.41", features = ["attributes", "valuable"] }
2 changes: 1 addition & 1 deletion eden/mononoke/common/gotham_ext/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ scopeguard = "1.2.0"
scuba_ext = { version = "0.1.0", path = "../scuba_ext" }
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "raw_value", "unbounded_depth"] }
time_ext = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
tokio-openssl = "0.6.5"
tokio-util = { version = "0.7.18", features = ["full"] }
tower-service = "0.3.3"
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/common/hgproto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ nom = "8"
pin-project = "1.1.11"
qps = { version = "0.1.0", path = "../../servers/slapi/slapi_server/qps" }
thiserror = "2.0.18"
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
tokio-util = { version = "0.7.18", features = ["full"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/common/metadata/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ anyhow = "1.0.102"
permission_checker = { version = "0.1.0", path = "../permission_checker" }
sapling-clientinfo = { version = "0.1.0", path = "../../../scm/lib/clientinfo" }
session_id = { version = "0.1.0", path = "../session_id" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
trust-dns-resolver = "0.20.4"
2 changes: 1 addition & 1 deletion eden/mononoke/common/mononoke_configs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ serde = { version = "1.0.219", features = ["derive", "rc"] }
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "raw_value", "unbounded_depth"] }
sha2 = "0.10.6"
stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
tracing = { version = "0.1.41", features = ["attributes", "valuable"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/common/mononoke_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ license = "GPLv2+"
[dependencies]
justknobs = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
mononoke_proc_macros = { version = "0.1.0", path = "proc_macros" }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
tracing = { version = "0.1.41", features = ["attributes", "valuable"] }
2 changes: 1 addition & 1 deletion eden/mononoke/common/ods_counters/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ chrono = { version = "0.4.44", features = ["clock", "serde", "std"], default-fea
fbinit = { version = "0.2.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
maplit = "1.0"
thiserror = "2.0.18"
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }

[dev-dependencies]
anyhow = "1.0.102"
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/common/permission_checker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ maplit = "1.0"
openssl = "0.10.72"
serde = { version = "1.0.219", features = ["derive", "rc"] }
serde_json = { version = "1.0.140", features = ["alloc", "float_roundtrip", "raw_value", "unbounded_depth"] }
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }

[dev-dependencies]
fbinit-tokio = { version = "0.1.2", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/common/quiet_stream/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ license = "GPLv2+"
[dependencies]
futures = { version = "0.3.31", features = ["async-await", "compat"] }
pin-project = "1.1.11"
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
2 changes: 1 addition & 1 deletion eden/mononoke/common/rate_limiting/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ serde = { version = "1.0.219", features = ["derive", "rc"] }
stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
strum = { version = "0.27.1", features = ["derive"] }
thiserror = "2.0.18"
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
2 changes: 1 addition & 1 deletion eden/mononoke/common/reloader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ context = { version = "0.1.0", path = "../../servers/slapi/slapi_server/context"
futures = { version = "0.3.31", features = ["async-await", "compat"] }
futures_ext = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
rand = "0.10"
tokio = { version = "1.50.0", features = ["full", "test-util", "tracing"] }
tokio = { version = "1.52.1", features = ["full", "test-util", "tracing"] }
tracing = { version = "0.1.41", features = ["attributes", "valuable"] }

[dev-dependencies]
Expand Down
Loading
Loading