Skip to content

Commit

Permalink
update clap to v3.2.8 in third-party/rust
Browse files Browse the repository at this point in the history
Summary:
v3.2.8 incorporates clap-rs/clap#3882, which is needed for some of the Clap w/ Python CLI fallback code I'm working on.

Ran all of the steps in https://www.internalfb.com/intern/wiki/Rust-at-facebook/Managing_fbsource_third-party_with_Reindeer/#overview

Reviewed By: zertosh

Differential Revision: D37566754

fbshipit-source-id: 998a4cd79c660d34c5e8468b2b27b6e0971f80ef
  • Loading branch information
emersonford authored and facebook-github-bot committed Jul 6, 2022
1 parent e5d569a commit a6bb2bd
Show file tree
Hide file tree
Showing 25 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion eden/fs/cli_rs/edenfs-commands/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ license = "GPLv2+"
[dependencies]
anyhow = "1.0.56"
async-trait = "0.1.56"
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
colored = "1.9"
comfy-table = "4.0.1"
crossterm = { version = "0.23.1", features = ["event-stream"] }
Expand Down
2 changes: 1 addition & 1 deletion eden/fs/cli_rs/edenfsctl/Cargo.toml
Expand Up @@ -9,7 +9,7 @@ license = "GPLv2+"

[dependencies]
anyhow = "1.0.56"
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
edenfs-commands = { version = "0.1.0", path = "../edenfs-commands" }
fbinit = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
tracing-subscriber = { version = "0.3.11", features = ["ansi", "env-filter", "fmt", "json", "local-time", "parking_lot", "registry"] }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/Cargo.toml
Expand Up @@ -87,7 +87,7 @@ cacheblob = { version = "0.1.0", path = "blobstore/cacheblob" }
cached_config = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
changesets = { version = "0.1.0", path = "changesets" }
check_git_wc = { version = "0.1.0", path = "git/check_git_wc" }
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
clap-old = { package = "clap", version = "2.33" }
cloned = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
cmdlib = { version = "0.1.0", path = "cmdlib" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/blobstore/Cargo.toml
Expand Up @@ -18,7 +18,7 @@ anyhow = "1.0.56"
async-trait = "0.1.56"
auto_impl = "0.4"
bytes = { version = "1.1", features = ["serde"] }
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
context = { version = "0.1.0", path = "../server/context" }
fbthrift = { version = "0.0.1+unstable", git = "https://github.com/facebook/fbthrift.git", branch = "main" }
serde = { version = "1.0.136", features = ["derive", "rc"] }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/blobstore/blobstore_stats/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ license = "GPLv2+"
[dependencies]
anyhow = "1.0.56"
blobstore = { version = "0.1.0", path = ".." }
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
context = { version = "0.1.0", path = "../../server/context" }
futures_stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
metaconfig_types = { version = "0.1.0", path = "../../metaconfig/types" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/blobstore/factory/Cargo.toml
Expand Up @@ -16,7 +16,7 @@ blobstore_sync_queue = { version = "0.1.0", path = "../../blobstore_sync_queue"
cacheblob = { version = "0.1.0", path = "../cacheblob" }
cached_config = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
chaosblob = { version = "0.1.0", path = "../chaosblob" }
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
clap-old = { package = "clap", version = "2.33" }
delayblob = { version = "0.1.0", path = "../delayblob" }
fbinit = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/blobstore/multiplexedblob/Cargo.toml
Expand Up @@ -14,7 +14,7 @@ blobstore = { version = "0.1.0", path = ".." }
blobstore_stats = { version = "0.1.0", path = "../blobstore_stats" }
blobstore_sync_queue = { version = "0.1.0", path = "../../blobstore_sync_queue" }
chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false }
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
cloned = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
context = { version = "0.1.0", path = "../../server/context" }
futures = { version = "0.3.13", features = ["async-await", "compat"] }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/blobstore_healer/Cargo.toml
Expand Up @@ -20,7 +20,7 @@ blobstore_sync_queue = { version = "0.1.0", path = "../blobstore_sync_queue" }
borrowed = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
cached_config = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false }
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
cmdlib = { version = "0.1.0", path = "../cmdlib" }
context = { version = "0.1.0", path = "../server/context" }
fbinit = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/bookmarks/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ license = "GPLv2+"
anyhow = "1.0.56"
async-trait = "0.1.56"
bookmarks_types = { version = "0.1.0", path = "bookmarks_types" }
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
context = { version = "0.1.0", path = "../server/context" }
facet = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
futures = { version = "0.3.13", features = ["async-await", "compat"] }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/bookmarks/bookmarks_types/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ license = "GPLv2+"
anyhow = "1.0.56"
ascii = "1.0"
ascii_ext = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
quickcheck = "1.0"
quickcheck_arbitrary_derive = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
sql = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
2 changes: 1 addition & 1 deletion eden/mononoke/cmdlib/base_app/Cargo.toml
Expand Up @@ -9,6 +9,6 @@ license = "GPLv2+"

[dependencies]
anyhow = "1.0.56"
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
heck = "0.3.1"
static_assertions = "1.1.0"
2 changes: 1 addition & 1 deletion eden/mononoke/cmdlib/caching/Cargo.toml
Expand Up @@ -10,6 +10,6 @@ license = "GPLv2+"
[dependencies]
anyhow = "1.0.56"
cachelib = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
environment = { version = "0.1.0", path = "../environment" }
fbinit = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
2 changes: 1 addition & 1 deletion eden/mononoke/cmdlib/log/Cargo.toml
Expand Up @@ -13,7 +13,7 @@ path = "../logging/lib.rs"
[dependencies]
anyhow = "1.0.56"
cached_config = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
env_logger = "0.7"
fbinit = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
log = { version = "0.4.14", features = ["kv_unstable", "kv_unstable_std"] }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/cmdlib/mononoke_app/Cargo.toml
Expand Up @@ -16,7 +16,7 @@ blobstore_factory = { version = "0.1.0", path = "../../blobstore/factory" }
bonsai_hg_mapping = { version = "0.1.0", path = "../../bonsai_hg_mapping" }
bookmarks = { version = "0.1.0", path = "../../bookmarks" }
cached_config = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
cmdlib_caching = { version = "0.1.0", path = "../caching" }
cmdlib_logging = { version = "0.1.0", path = "../log" }
context = { version = "0.1.0", path = "../../server/context" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/cmdlib/scrubbing/Cargo.toml
Expand Up @@ -10,6 +10,6 @@ license = "GPLv2+"
[dependencies]
anyhow = "1.0.56"
blobstore_factory = { version = "0.1.0", path = "../../blobstore/factory" }
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
environment = { version = "0.1.0", path = "../environment" }
mononoke_app = { version = "0.1.0", path = "../mononoke_app" }
2 changes: 1 addition & 1 deletion eden/mononoke/common/rendezvous/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ license = "GPLv2+"
[dependencies]
anyhow = "1.0.56"
async-trait = "0.1.56"
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
dashmap = { version = "4.0.2", features = ["rayon", "serde"] }
fbinit = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
futures = { version = "0.3.13", features = ["async-await", "compat"] }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/derived_data/remote/Cargo.toml
Expand Up @@ -13,6 +13,6 @@ path = "lib.rs"
[dependencies]
anyhow = "1.0.56"
async-trait = "0.1.56"
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
derived_data_service_if = { version = "0.1.0", path = "if" }
mononoke_types = { version = "0.1.0", path = "../../mononoke_types" }
2 changes: 1 addition & 1 deletion eden/mononoke/megarepo_api/megarepo_config/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ license = "GPLv2+"
anyhow = "1.0.56"
async-trait = "0.1.56"
cached_config = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
configo_client = { version = "0.1.0", path = "../configo_client" }
context = { version = "0.1.0", path = "../../server/context" }
faster-hex = "0.6.1"
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/metaconfig/types/Cargo.toml
Expand Up @@ -11,7 +11,7 @@ license = "GPLv2+"
anyhow = "1.0.56"
ascii = "1.0"
bookmarks_types = { version = "0.1.0", path = "../../bookmarks/bookmarks_types" }
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
derive_more = "0.99.3"
facet = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
fbinit = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/server/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ license = "GPLv2+"
[dependencies]
alpn = { version = "0.1.0", path = "../alpn" }
anyhow = "1.0.56"
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
cloned = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
cmdlib = { version = "0.1.0", path = "../cmdlib" }
cmdlib_logging = { version = "0.1.0", path = "../cmdlib/log" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/tools/admin/Cargo.toml
Expand Up @@ -25,7 +25,7 @@ changeset_fetcher = { version = "0.1.0", path = "../../blobrepo/changeset_fetche
changesets = { version = "0.1.0", path = "../../changesets" }
changesets_creation = { version = "0.1.0", path = "../../changesets/changesets_creation" }
chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false }
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
cmdlib_displaying = { version = "0.1.0", path = "../../cmdlib/displaying" }
cmdlib_scrubbing = { version = "0.1.0", path = "../../cmdlib/scrubbing" }
context = { version = "0.1.0", path = "../../server/context" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/tools/example/Cargo.toml
Expand Up @@ -9,7 +9,7 @@ license = "GPLv2+"

[dependencies]
anyhow = "1.0.56"
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
facet = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
fbinit = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
mononoke_app = { version = "0.1.0", path = "../../cmdlib/mononoke_app" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/tools/executor/Cargo.toml
Expand Up @@ -14,7 +14,7 @@ path = "src/main.rs"
[dependencies]
anyhow = "1.0.56"
async-trait = "0.1.56"
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
fbinit = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
futures = { version = "0.3.13", features = ["async-await", "compat"] }
mononoke_app = { version = "0.1.0", path = "../../cmdlib/mononoke_app" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/tools/testtool/Cargo.toml
Expand Up @@ -14,7 +14,7 @@ blobrepo = { version = "0.1.0", path = "../../blobrepo" }
bookmarks = { version = "0.1.0", path = "../../bookmarks" }
changeset_info = { version = "0.1.0", path = "../../derived_data/changeset_info" }
changesets_creation = { version = "0.1.0", path = "../../changesets/changesets_creation" }
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
context = { version = "0.1.0", path = "../../server/context" }
deleted_manifest = { version = "0.1.0", path = "../../derived_data/deleted_manifest" }
derived_data_filenodes = { version = "0.1.0", path = "../../derived_data/filenodes" }
Expand Down
2 changes: 1 addition & 1 deletion eden/mononoke/walker/Cargo.toml
Expand Up @@ -26,7 +26,7 @@ bounded_traversal = { version = "0.1.0", path = "../common/bounded_traversal" }
bulkops = { version = "0.1.0", path = "../bulkops" }
bytes = { version = "1.1", features = ["serde"] }
changeset_info = { version = "0.1.0", path = "../derived_data/changeset_info" }
clap = { version = "3.2.6", features = ["derive", "regex", "unicode", "wrap_help"] }
clap = { version = "3.2.8", features = ["derive", "regex", "unicode", "wrap_help"] }
cloned = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" }
cmdlib = { version = "0.1.0", path = "../cmdlib" }
cmdlib_scrubbing = { version = "0.1.0", path = "../cmdlib/scrubbing" }
Expand Down

0 comments on commit a6bb2bd

Please sign in to comment.