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-core" 16version = "1.12.1" 17authors = [ 18 "Niko Matsakis <niko@alum.mit.edu>", 19 "Josh Stone <cuviper@gmail.com>", 20] 21build = "build.rs" 22links = "rayon-core" 23description = "Core APIs for Rayon" 24documentation = "https://docs.rs/rayon/" 25readme = "README.md" 26keywords = [ 27 "parallel", 28 "thread", 29 "concurrency", 30 "join", 31 "performance", 32] 33categories = ["concurrency"] 34license = "MIT OR Apache-2.0" 35repository = "https://github.com/rayon-rs/rayon" 36 37[[test]] 38name = "stack_overflow_crash" 39path = "tests/stack_overflow_crash.rs" 40 41[[test]] 42name = "double_init_fail" 43path = "tests/double_init_fail.rs" 44 45[[test]] 46name = "init_zero_threads" 47path = "tests/init_zero_threads.rs" 48 49[[test]] 50name = "scope_join" 51path = "tests/scope_join.rs" 52 53[[test]] 54name = "simple_panic" 55path = "tests/simple_panic.rs" 56 57[[test]] 58name = "scoped_threadpool" 59path = "tests/scoped_threadpool.rs" 60 61[[test]] 62name = "use_current_thread" 63path = "tests/use_current_thread.rs" 64 65[dependencies.crossbeam-deque] 66version = "0.8.1" 67 68[dependencies.crossbeam-utils] 69version = "0.8.0" 70 71[dependencies.wasm_sync] 72version = "0.1.0" 73optional = true 74 75[dev-dependencies.rand] 76version = "0.8" 77 78[dev-dependencies.rand_xorshift] 79version = "0.3" 80 81[dev-dependencies.scoped-tls] 82version = "1.0" 83 84[features] 85web_spin_lock = ["dep:wasm_sync"] 86 87[target."cfg(unix)".dev-dependencies.libc] 88version = "0.2" 89