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.0 kB

123456789101112131415161718192021222324252627282930313233343536
  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", "telemetry"]
  12. tracing = ["dora-node-api/tracing"]
  13. telemetry = ["dora-runtime/telemetry"]
  14. [dependencies]
  15. dora-node-api = { workspace = true }
  16. dora-operator-api-python = { workspace = true }
  17. pyo3.workspace = true
  18. eyre = "0.6"
  19. serde_yaml = "0.8.23"
  20. flume = "0.10.14"
  21. dora-runtime = { workspace = true, features = ["tracing", "metrics", "python"] }
  22. dora-daemon = { workspace = true }
  23. dora-download = { workspace = true }
  24. arrow = { workspace = true, features = ["pyarrow"] }
  25. pythonize = { workspace = true }
  26. futures = "0.3.28"
  27. dora-ros2-bridge-python = { workspace = true }
  28. # pyo3_special_method_derive = "0.4.2"
  29. tokio = { version = "1.24.2", features = ["rt"] }
  30. [lib]
  31. name = "dora"
  32. crate-type = ["cdylib"]