diff options
author | metamuffin <metamuffin@disroot.org> | 2025-05-05 15:09:54 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-05-05 15:09:54 +0200 |
commit | 306f96164784a8cbf405e72fa4364d6523366e95 (patch) | |
tree | 51717fc139871baa438aad806f4923669ae0896c /old/bv1/codec/Cargo.toml | |
parent | 9cc089e2d6e841879e430b01d2f3d92c8820523e (diff) | |
download | video-codec-experiments-306f96164784a8cbf405e72fa4364d6523366e95.tar video-codec-experiments-306f96164784a8cbf405e72fa4364d6523366e95.tar.bz2 video-codec-experiments-306f96164784a8cbf405e72fa4364d6523366e95.tar.zst |
old dir
Diffstat (limited to 'old/bv1/codec/Cargo.toml')
-rw-r--r-- | old/bv1/codec/Cargo.toml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/old/bv1/codec/Cargo.toml b/old/bv1/codec/Cargo.toml new file mode 100644 index 0000000..d4c9002 --- /dev/null +++ b/old/bv1/codec/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "bv1" +version = "0.1.0" +edition = "2021" + +[dependencies] +rayon = {version="1.10.0",optional = true} + +[features] +default = ["parallel"] +parallel = ["dep:rayon"] + |