maybe-rayon 0.1.1

Either acts as rayon or creates a single-threaded facade
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "maybe-rayon"
version = "0.1.1"
edition = "2021"
license = "MIT"
description = "Either acts as rayon or creates a single-threaded facade"
homepage = "https://github.com/shssoichiro/maybe-rayon"
repository = "https://github.com/shssoichiro/maybe-rayon"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
cfg-if = "1.0"
rayon = { optional = true, version = "1.0" }

[features]
default = ["threads"]
threads = ["rayon"]