Files
another-boids-in-rust/vendor/rayon/Cargo.toml

131 lines
2.3 KiB
TOML

# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
rust-version = "1.80"
name = "rayon"
version = "1.11.0"
build = false
exclude = [
"/ci/*",
"/.github/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple work-stealing parallelism for Rust"
documentation = "https://docs.rs/rayon/"
readme = "README.md"
keywords = [
"parallel",
"thread",
"concurrency",
"join",
"performance",
]
categories = ["concurrency"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rayon-rs/rayon"
[features]
web_spin_lock = [
"dep:wasm_sync",
"rayon-core/web_spin_lock",
]
[lib]
name = "rayon"
path = "src/lib.rs"
[[test]]
name = "chars"
path = "tests/chars.rs"
[[test]]
name = "clones"
path = "tests/clones.rs"
[[test]]
name = "collect"
path = "tests/collect.rs"
[[test]]
name = "cross-pool"
path = "tests/cross-pool.rs"
[[test]]
name = "debug"
path = "tests/debug.rs"
[[test]]
name = "drain_vec"
path = "tests/drain_vec.rs"
[[test]]
name = "intersperse"
path = "tests/intersperse.rs"
[[test]]
name = "issue671"
path = "tests/issue671.rs"
[[test]]
name = "issue671-unzip"
path = "tests/issue671-unzip.rs"
[[test]]
name = "iter_panic"
path = "tests/iter_panic.rs"
[[test]]
name = "named-threads"
path = "tests/named-threads.rs"
[[test]]
name = "octillion"
path = "tests/octillion.rs"
[[test]]
name = "par_bridge_recursion"
path = "tests/par_bridge_recursion.rs"
[[test]]
name = "producer_split_at"
path = "tests/producer_split_at.rs"
[[test]]
name = "sort-panic-safe"
path = "tests/sort-panic-safe.rs"
[[test]]
name = "str"
path = "tests/str.rs"
[dependencies.either]
version = "1"
default-features = false
[dependencies.rayon-core]
version = "1.13.0"
[dependencies.wasm_sync]
version = "0.1.0"
optional = true
[dev-dependencies.rand]
version = "0.9"
[dev-dependencies.rand_xorshift]
version = "0.4"