Skip to content

Commit

Permalink
Handle features correctly in CLI package (#1318)
Browse files Browse the repository at this point in the history
  • Loading branch information
rinon authored Jul 15, 2024
2 parents a1346cf + 37d8a49 commit fb4557c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,10 @@ name = "seek_stress"
[dependencies]
cfg-if = "1.0.0"
libc = "0.2"
rav1d = { path = "../", version = "0.2.0" }
rav1d = { path = "../", version = "0.2.0", default-features = false }

[features]
default = ["asm", "bitdepth_8", "bitdepth_16"]
asm = ["rav1d/asm"]
bitdepth_8 = ["rav1d/bitdepth_8"]
bitdepth_16 = ["rav1d/bitdepth_16"]

0 comments on commit fb4557c

Please sign in to comment.