You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Cargo.toml 630 B

9 months ago
1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "dora-dav1d"
  3. edition = "2021"
  4. license = "BSD-2-Clause"
  5. version.workspace = true
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [features]
  8. default = []
  9. python = ["pyo3"]
  10. [dependencies]
  11. dav1d = "0.10"
  12. bitstream-io = "2.0"
  13. log = "0.4"
  14. structopt = "0.3"
  15. dora-node-api = { workspace = true, features = ["tracing"] }
  16. eyre = "0.6.8"
  17. bytemuck = "1.7.0"
  18. pyo3 = { workspace = true, features = [
  19. "extension-module",
  20. "abi3",
  21. "eyre",
  22. "generate-import-lib",
  23. ], optional = true }
  24. [lib]
  25. name = "dora_dav1d"
  26. path = "src/lib.rs"
  27. crate-type = ["lib", "cdylib"]