aboutsummaryrefslogtreecommitdiff
path: root/lvc/codec/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'lvc/codec/Cargo.toml')
-rw-r--r--lvc/codec/Cargo.toml7
1 files changed, 6 insertions, 1 deletions
diff --git a/lvc/codec/Cargo.toml b/lvc/codec/Cargo.toml
index 67189bb..0c52ad2 100644
--- a/lvc/codec/Cargo.toml
+++ b/lvc/codec/Cargo.toml
@@ -4,4 +4,9 @@ version = "0.1.0"
edition = "2021"
[dependencies]
-rayon = "1.7.0"
+rayon = {version="1.7.0",optional = true}
+
+[features]
+default = ["parallel"]
+parallel = ["dep:rayon"]
+