aboutsummaryrefslogtreecommitdiff
path: root/bv1/codec/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'bv1/codec/Cargo.toml')
-rw-r--r--bv1/codec/Cargo.toml12
1 files changed, 12 insertions, 0 deletions
diff --git a/bv1/codec/Cargo.toml b/bv1/codec/Cargo.toml
new file mode 100644
index 0000000..0c52ad2
--- /dev/null
+++ b/bv1/codec/Cargo.toml
@@ -0,0 +1,12 @@
+[package]
+name = "bv1"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
+rayon = {version="1.7.0",optional = true}
+
+[features]
+default = ["parallel"]
+parallel = ["dep:rayon"]
+