1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2021" 14rust-version = "1.63" 15name = "rayon" 16version = "1.8.1" 17authors = [ 18 "Niko Matsakis <[email protected]>", 19 "Josh Stone <[email protected]>", 20] 21exclude = [ 22 "/ci/*", 23 "/scripts/*", 24 "/.github/*", 25] 26description = "Simple work-stealing parallelism for Rust" 27documentation = "https://docs.rs/rayon/" 28readme = "README.md" 29keywords = [ 30 "parallel", 31 "thread", 32 "concurrency", 33 "join", 34 "performance", 35] 36categories = ["concurrency"] 37license = "MIT OR Apache-2.0" 38repository = "https://github.com/rayon-rs/rayon" 39 40[dependencies.either] 41version = "1.0" 42default-features = false 43 44[dependencies.rayon-core] 45version = "1.12.1" 46 47[dependencies.wasm_sync] 48version = "0.1.0" 49optional = true 50 51[dev-dependencies.rand] 52version = "0.8" 53 54[dev-dependencies.rand_xorshift] 55version = "0.3" 56 57[features] 58web_spin_lock = [ 59 "dep:wasm_sync", 60 "rayon-core/web_spin_lock", 61] 62