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

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. version.workspace = true
  3. name = "dora-node-api-python"
  4. edition = "2021"
  5. documentation.workspace = true
  6. description.workspace = true
  7. license.workspace = true
  8. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  9. [features]
  10. default = ["tracing", "telemetry"]
  11. tracing = ["dora-node-api/tracing"]
  12. telemetry = ["dora-runtime/telemetry"]
  13. [dependencies]
  14. dora-node-api = { workspace = true }
  15. dora-operator-api-python = { workspace = true }
  16. pyo3 = { workspace = true, features = ["eyre", "abi3-py37"] }
  17. eyre = "0.6"
  18. serde_yaml = "0.8.23"
  19. flume = "0.10.14"
  20. dora-runtime = { workspace = true, features = ["tracing", "metrics", "python"] }
  21. arrow = { workspace = true, features = ["pyarrow"] }
  22. pythonize = { workspace = true }
  23. futures = "0.3.28"
  24. dora-ros2-bridge-python = { workspace = true }
  25. [lib]
  26. name = "dora"
  27. crate-type = ["cdylib"]