remove rayon stuff

This commit is contained in:
Simon Gardling 2022-05-25 11:21:38 -04:00
parent 57210c9af4
commit 21792a7c79
2 changed files with 0 additions and 22 deletions

17
Cargo.lock generated
View File

@ -95,15 +95,6 @@ dependencies = [
"nodrop",
]
[[package]]
name = "async-lock"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e97a171d191782fba31bb902b14ad94e24a68145032b7eedf871ab0bc0d077b6"
dependencies = [
"event-listener",
]
[[package]]
name = "atomic_refcell"
version = "0.1.8"
@ -755,12 +746,6 @@ dependencies = [
"str-buf",
]
[[package]]
name = "event-listener"
version = "2.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77f3309417938f28bf8228fcff79a4a37103981e3e186d2ccd19c74b38f4eb71"
[[package]]
name = "exmex"
version = "0.16.0"
@ -2780,7 +2765,6 @@ checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"
name = "ytbn_graphing_software"
version = "0.1.0"
dependencies = [
"async-lock",
"benchmarks",
"bincode",
"cfg-if 1.0.0",
@ -2793,7 +2777,6 @@ dependencies = [
"instant",
"itertools",
"parsing",
"rayon",
"run_script",
"ruzstd",
"serde",

View File

@ -9,9 +9,6 @@ description = "Crossplatform (and web-compatible) graphing calculator"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
threading = ["async-lock", "rayon"]
[profile.release]
debug = false
codegen-units = 1
@ -73,8 +70,6 @@ run_script = "0.9"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
instant = "0.1"
tracing-subscriber = "0.3"
rayon = { version = "1.5", optional = true }
async-lock = { version = "2.5", optional = true }
getrandom = { version = "0.2" }
[target.'cfg(target_arch = "wasm32")'.dependencies]