diff options
| author | metamuffin <metamuffin@disroot.org> | 2023-03-09 22:01:20 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2023-03-09 22:01:20 +0100 |
| commit | 7494981595712cf42681823e8fd79977b9b5f9dc (patch) | |
| tree | 7f85af24f4c1e56b6cf1c7baf6fe8a6cd798c7b3 /lvc/codec/Cargo.toml | |
| parent | 11b78570656bd0ca67594472765fc629aa25fd25 (diff) | |
| download | video-codec-experiments-7494981595712cf42681823e8fd79977b9b5f9dc.tar video-codec-experiments-7494981595712cf42681823e8fd79977b9b5f9dc.tar.bz2 video-codec-experiments-7494981595712cf42681823e8fd79977b9b5f9dc.tar.zst | |
web!
Diffstat (limited to 'lvc/codec/Cargo.toml')
| -rw-r--r-- | lvc/codec/Cargo.toml | 7 |
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"] + |