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

11 months ago
1234567891011121314151617181920212223242526
  1. [package]
  2. name = "dora-object-to-pose"
  3. version = "0.3.11"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. dora-node-api = { workspace = true }
  8. eyre = "0.6.8"
  9. pyo3 = { workspace = true, features = [
  10. "extension-module",
  11. "abi3",
  12. "eyre",
  13. "generate-import-lib",
  14. ], optional = true }
  15. [features]
  16. default = []
  17. python = ["pyo3"]
  18. [lib]
  19. name = "dora_object_to_pose"
  20. path = "src/lib.rs"
  21. crate-type = ["lib", "cdylib"]