aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorJakub Kotur <qtr@google.com>2021-03-16 20:22:30 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-03-16 20:22:30 +0000
commit4c0b8e0ef78bcd80a4facc34c6a2158d83f96802 (patch)
tree13641ab7afc7aa43b586606c18d53084dedf7ace /Cargo.toml.orig
parenta679e9b8b7e4ae27a19b81f216e375ea8a9cdb8e (diff)
parent7522a9ba008ac88224e0990932bdd298a43a2336 (diff)
downloadrayon-4c0b8e0ef78bcd80a4facc34c6a2158d83f96802.tar.gz
Initial import of rayon-1.5.0. am: 041839ceab am: d836dd6404 am: 7522a9ba00
Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/rayon/+/1622436 Change-Id: I94b0e06d9da131d6f98db436ad1a178dfff2ec90
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig41
1 files changed, 41 insertions, 0 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
new file mode 100644
index 0000000..a7600e1
--- /dev/null
+++ b/Cargo.toml.orig
@@ -0,0 +1,41 @@
+[package]
+name = "rayon"
+# Reminder to update html_rool_url in lib.rs when updating version
+version = "1.5.0"
+authors = ["Niko Matsakis <niko@alum.mit.edu>",
+ "Josh Stone <cuviper@gmail.com>"]
+description = "Simple work-stealing parallelism for Rust"
+edition = "2018"
+license = "Apache-2.0/MIT"
+repository = "https://github.com/rayon-rs/rayon"
+documentation = "https://docs.rs/rayon/"
+readme = "README.md"
+keywords = ["parallel", "thread", "concurrency", "join", "performance"]
+categories = ["concurrency"]
+exclude = ["/ci/*", "/scripts/*", "/.github/*", "/bors.toml"]
+
+[workspace]
+members = ["rayon-demo", "rayon-core"]
+exclude = ["ci"]
+
+[dependencies]
+rayon-core = { version = "1.9.0", path = "rayon-core" }
+crossbeam-deque = "0.8.0"
+
+# This is a public dependency!
+[dependencies.either]
+version = "1.0"
+default-features = false
+
+[dev-dependencies]
+docopt = "1"
+lazy_static = "1"
+rand = "0.7"
+rand_xorshift = "0.2"
+
+[dev-dependencies.serde]
+version = "1.0.85"
+features = ["derive"]
+
+[build-dependencies]
+autocfg = "1"