sapling/eden/mononoke/walker/Cargo.toml
Alex Hornby 14aa6d37f2 mononoke: Show possible Node and Edge type args in the scrub help
Summary:
Show the options for specifying node and edge types in the --help output

These changes removed the last use of lazy_static in the walker, so updated TARGETS as well.

Reviewed By: krallin

Differential Revision: D25188964

fbshipit-source-id: c5ccb4f5a0f3be1b8cb7d51cd5f99236d60d3029
2020-12-01 11:45:00 -08:00

76 lines
3.2 KiB
TOML

[package]
name = "walker"
edition = "2018"
version = "0.1.0"
authors = ['Facebook']
license = "GPLv2+"
include = ["src/**/*.rs"]
[dependencies]
blame = { path = "../derived_data/blame" }
blobrepo = { path = "../blobrepo" }
blobrepo_factory = { path = "../blobrepo/factory" }
blobrepo_hg = { path = "../blobrepo/blobrepo_hg" }
blobstore = { path = "../blobstore" }
blobstore_factory = { path = "../blobstore/factory" }
bookmarks = { path = "../bookmarks" }
bounded_traversal = { path = "../common/bounded_traversal" }
changeset_info = { path = "../derived_data/changeset_info" }
cmdlib = { path = "../cmdlib" }
context = { path = "../server/context" }
deleted_files_manifest = { path = "../derived_data/deleted_files_manifest" }
derived_data = { path = "../derived_data" }
derived_data_filenodes = { path = "../derived_data/filenodes" }
fastlog = { path = "../derived_data/fastlog" }
filenodes = { path = "../filenodes" }
filestore = { path = "../filestore" }
fsnodes = { path = "../derived_data/fsnodes" }
manifest = { path = "../manifest" }
mercurial_derived_data = { path = "../derived_data/mercurial_derived_data" }
mercurial_types = { path = "../mercurial/types" }
metaconfig_types = { path = "../metaconfig/types" }
mononoke_types = { path = "../mononoke_types" }
multiplexedblob = { path = "../blobstore/multiplexedblob" }
newfilenodes = { path = "../newfilenodes" }
phases = { path = "../phases" }
prefixblob = { path = "../blobstore/prefixblob" }
samplingblob = { path = "../blobstore/samplingblob" }
scuba_ext = { path = "../common/scuba_ext" }
skeleton_manifest = { path = "../derived_data/skeleton_manifest" }
sql_ext = { path = "../common/rust/sql_ext" }
unodes = { path = "../derived_data/unodes" }
async_compression = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
cached_config = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
cloned = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
fbinit = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
futures_ext = { package = "futures_01_ext", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
hash_memo = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
scuba = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
stats = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
ahash = "0.4.4"
anyhow = "1.0"
array-init = "0.1"
async-trait = "0.1.29"
auto_impl = "0.4"
bitflags = "1.2"
bytes = { version = "0.5", features = ["serde"] }
clap = "2.33"
dashmap = "3.11.10"
derive_more = "0.99.3"
filetime = "0.2.9"
futures = { version = "0.3.5", features = ["async-await", "compat"] }
futures-old = { package = "futures", version = "0.1" }
hex = "0.4"
inlinable_string = "0.1"
internment = {version = "0.4.1", features = ["serde"]}
itertools = "0.8"
once_cell = "1.4"
paste = "1.0"
percent-encoding = "2.1"
regex = "1.3.7"
slog = { version = "2.5", features = ["max_level_debug"] }
strum = "0.19"
strum_macros = "0.19"
thiserror = "1.0"
tokio = { version = "=0.2.13", features = ["full"] }