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 1.1 kB

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