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

9 months ago
9 months ago
9 months ago
1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "dora-rustypot"
  3. version = "0.1.0"
  4. edition.workspace = true
  5. rust-version.workspace = true
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. dora-node-api = { workspace = true }
  9. eyre = "0.6.12"
  10. rustypot = { version = "1.0" }
  11. serialport = { version = "4.7.1", default-features = false }
  12. pyo3 = { workspace = true, features = [
  13. "extension-module",
  14. "abi3",
  15. "eyre",
  16. "generate-import-lib",
  17. ], optional = true }
  18. [features]
  19. default = []
  20. python = ["pyo3"]
  21. [lib]
  22. name = "dora_rustypot"
  23. path = "src/lib.rs"
  24. crate-type = ["lib", "cdylib"]