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 668 B

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