1[package]
2name = "maybe-rayon"
3version = "0.1.1"
4edition = "2021"
5license = "MIT"
6description = "Either acts as rayon or creates a single-threaded facade"
7homepage = "https://github.com/shssoichiro/maybe-rayon"
8repository = "https://github.com/shssoichiro/maybe-rayon"
9
10# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
11
12[dependencies]
13cfg-if = "1.0"
14rayon = { optional = true, version = "1.0" }
15
16[features]
17default = ["threads"]
18threads = ["rayon"]
19