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

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