Add rayon feature to DashMap crate

Summary: We need the rayon feature in the next diff in the stack

Reviewed By: alunyov

Differential Revision: D31833982

fbshipit-source-id: e908b3a8f8a16647df0bffe7a44115393254f7d9
This commit is contained in:
Tianyu Yao 2021-10-21 17:09:40 -07:00 committed by Facebook GitHub Bot
parent a9fc82efc6
commit 2ef867d707
7 changed files with 7 additions and 7 deletions

View File

@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
anyhow = "1.0"
crossbeam = "0.8"
dashmap = { version = "4.0.2", features = ["serde"] }
dashmap = { version = "4.0.2", features = ["rayon", "serde"] }
fsinfo = { path = "../fsinfo" }
libc = "0.2.98"
minibytes = { path = "../minibytes" }

View File

@ -103,7 +103,7 @@ cloned = { version = "0.1.0", git = "https://github.com/facebookexperimental/rus
cmdlib = { version = "0.1.0", path = "cmdlib" }
context = { version = "0.1.0", path = "server/context" }
criterion = "=0.3.1"
dashmap = { version = "4.0.2", features = ["serde"] }
dashmap = { version = "4.0.2", features = ["rayon", "serde"] }
derive_more = "0.99.3"
derived_data = { version = "0.1.0", path = "derived_data" }
environment = { version = "0.1.0", path = "cmdlib/environment" }

View File

@ -20,7 +20,7 @@ blobstore = { version = "0.1.0", path = "../blobstore" }
cacheblob = { version = "0.1.0", path = "../blobstore/cacheblob" }
cloned = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
context = { version = "0.1.0", path = "../server/context" }
dashmap = { version = "4.0.2", features = ["serde"] }
dashmap = { version = "4.0.2", features = ["rayon", "serde"] }
futures = { version = "0.3.13", features = ["async-await", "compat"] }
futures-old = { package = "futures", version = "0.1.31" }
futures_ext = { package = "futures_01_ext", version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }

View File

@ -10,7 +10,7 @@ license = "GPLv2+"
[dependencies]
anyhow = "1.0"
async-trait = "0.1.51"
dashmap = { version = "4.0.2", features = ["serde"] }
dashmap = { version = "4.0.2", features = ["rayon", "serde"] }
fbinit = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
futures = { version = "0.3.13", features = ["async-await", "compat"] }
futures_ext = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }

View File

@ -17,7 +17,7 @@ changeset_fetcher = { version = "0.1.0", path = "../../blobrepo/changeset_fetche
cloned = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
common = { version = "0.1.0", path = "../common" }
context = { version = "0.1.0", path = "../../server/context" }
dashmap = { version = "4.0.2", features = ["serde"] }
dashmap = { version = "4.0.2", features = ["rayon", "serde"] }
facet = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
fbthrift = { version = "0.0.1+unstable", git = "https://github.com/facebook/fbthrift.git", branch = "master" }
futures = { version = "0.3.13", features = ["async-await", "compat"] }

View File

@ -30,7 +30,7 @@ clap = "2.33"
cloned = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
cmdlib = { version = "0.1.0", path = "../cmdlib" }
context = { version = "0.1.0", path = "../server/context" }
dashmap = { version = "4.0.2", features = ["serde"] }
dashmap = { version = "4.0.2", features = ["rayon", "serde"] }
deleted_files_manifest = { version = "0.1.0", path = "../derived_data/deleted_files_manifest" }
derive_more = "0.99.3"
derived_data = { version = "0.1.0", path = "../derived_data" }

View File

@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
anyhow = "1.0"
crossbeam = "0.8"
dashmap = { version = "4.0.2", features = ["serde"] }
dashmap = { version = "4.0.2", features = ["rayon", "serde"] }
fsinfo = { path = "../fsinfo" }
libc = "0.2.98"
minibytes = { path = "../minibytes" }