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

9 months ago
1 year ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. [workspace]
  2. members = [
  3. "apis/c/node",
  4. "apis/c/operator",
  5. "apis/c++/node",
  6. "apis/c++/operator",
  7. "apis/python/node",
  8. "apis/python/operator",
  9. "apis/rust/*",
  10. "apis/rust/operator/macros",
  11. "apis/rust/operator/types",
  12. "binaries/cli",
  13. "binaries/coordinator",
  14. "binaries/daemon",
  15. "binaries/runtime",
  16. "examples/rust-dataflow/node",
  17. "examples/rust-dataflow/status-node",
  18. "examples/rust-dataflow/sink",
  19. "examples/rust-dataflow/sink-dynamic",
  20. "examples/rust-ros2-dataflow/node",
  21. "examples/benchmark/node",
  22. "examples/benchmark/sink",
  23. "examples/multiple-daemons/node",
  24. "examples/multiple-daemons/operator",
  25. "examples/multiple-daemons/sink",
  26. "libraries/arrow-convert",
  27. "libraries/communication-layer/*",
  28. "libraries/core",
  29. "libraries/message",
  30. "libraries/shared-memory-server",
  31. "libraries/extensions/download",
  32. "libraries/extensions/telemetry/*",
  33. "node-hub/dora-record",
  34. "node-hub/dora-rerun",
  35. "node-hub/terminal-print",
  36. "node-hub/openai-proxy-server",
  37. "node-hub/dora-kit-car",
  38. "node-hub/dora-object-to-pose",
  39. "node-hub/dora-mistral-rs",
  40. "node-hub/dora-rav1e",
  41. "node-hub/dora-dav1d",
  42. "node-hub/dora-rustypot",
  43. "libraries/extensions/ros2-bridge",
  44. "libraries/extensions/ros2-bridge/msg-gen",
  45. "libraries/extensions/ros2-bridge/python",
  46. "tests/queue_size_latest_data_rust/receive_data",
  47. ]
  48. [workspace.package]
  49. edition = "2021"
  50. # Make sure to also bump `apis/node/python/__init__.py` version.
  51. version = "0.3.11"
  52. description = "`dora` goal is to be a low latency, composable, and distributed data flow."
  53. documentation = "https://dora-rs.ai"
  54. license = "Apache-2.0"
  55. repository = "https://github.com/dora-rs/dora/"
  56. [workspace.dependencies]
  57. dora-node-api = { version = "0.3.11", path = "apis/rust/node", default-features = false }
  58. dora-node-api-python = { version = "0.3.11", path = "apis/python/node", default-features = false }
  59. dora-operator-api = { version = "0.3.11", path = "apis/rust/operator", default-features = false }
  60. dora-operator-api-macros = { version = "0.3.11", path = "apis/rust/operator/macros" }
  61. dora-operator-api-types = { version = "0.3.11", path = "apis/rust/operator/types" }
  62. dora-operator-api-python = { version = "0.3.11", path = "apis/python/operator" }
  63. dora-operator-api-c = { version = "0.3.11", path = "apis/c/operator" }
  64. dora-node-api-c = { version = "0.3.11", path = "apis/c/node" }
  65. dora-core = { version = "0.3.11", path = "libraries/core" }
  66. dora-arrow-convert = { version = "0.3.11", path = "libraries/arrow-convert" }
  67. dora-tracing = { version = "0.3.11", path = "libraries/extensions/telemetry/tracing" }
  68. dora-metrics = { version = "0.3.11", path = "libraries/extensions/telemetry/metrics" }
  69. dora-download = { version = "0.3.11", path = "libraries/extensions/download" }
  70. shared-memory-server = { version = "0.3.11", path = "libraries/shared-memory-server" }
  71. communication-layer-request-reply = { version = "0.3.11", path = "libraries/communication-layer/request-reply" }
  72. dora-cli = { version = "0.3.11", path = "binaries/cli" }
  73. dora-runtime = { version = "0.3.11", path = "binaries/runtime" }
  74. dora-daemon = { version = "0.3.11", path = "binaries/daemon" }
  75. dora-coordinator = { version = "0.3.11", path = "binaries/coordinator" }
  76. dora-ros2-bridge = { version = "0.3.11", path = "libraries/extensions/ros2-bridge" }
  77. dora-ros2-bridge-msg-gen = { version = "0.3.11", path = "libraries/extensions/ros2-bridge/msg-gen" }
  78. dora-ros2-bridge-python = { path = "libraries/extensions/ros2-bridge/python" }
  79. # versioned independently from the other dora crates
  80. dora-message = { version = "0.4.4", path = "libraries/message" }
  81. arrow = { version = "54.2.1" }
  82. arrow-schema = { version = "54.2.1" }
  83. arrow-data = { version = "54.2.1" }
  84. arrow-array = { version = "54.2.1" }
  85. parquet = { version = "54.2.1" }
  86. pyo3 = { version = "0.23", features = [
  87. "eyre",
  88. "abi3-py37",
  89. "multiple-pymethods",
  90. ] }
  91. pythonize = "0.23"
  92. git2 = { version = "0.18.0", features = ["vendored-openssl"] }
  93. [package]
  94. name = "dora-examples"
  95. version = "0.0.0"
  96. edition.workspace = true
  97. license = "Apache-2.0"
  98. publish = false
  99. [features]
  100. # enables examples that depend on a sourced ROS2 installation
  101. ros2-examples = []
  102. [dev-dependencies]
  103. eyre = "0.6.8"
  104. tokio = "1.24.2"
  105. dora-cli = { workspace = true }
  106. dora-coordinator = { workspace = true }
  107. dora-core = { workspace = true }
  108. dora-message = { workspace = true }
  109. dora-tracing = { workspace = true }
  110. dora-download = { workspace = true }
  111. dunce = "1.0.2"
  112. serde_yaml = "0.8.23"
  113. uuid = { version = "1.7", features = ["v7", "serde"] }
  114. tracing = "0.1.36"
  115. futures = "0.3.25"
  116. tokio-stream = "0.1.11"
  117. [[example]]
  118. name = "c-dataflow"
  119. path = "examples/c-dataflow/run.rs"
  120. [[example]]
  121. name = "camera"
  122. path = "examples/camera/run.rs"
  123. [[example]]
  124. name = "vlm"
  125. path = "examples/vlm/run.rs"
  126. [[example]]
  127. name = "rust-dataflow"
  128. path = "examples/rust-dataflow/run.rs"
  129. [[example]]
  130. name = "rust-dataflow-git"
  131. path = "examples/rust-dataflow-git/run.rs"
  132. [[example]]
  133. name = "rust-ros2-dataflow"
  134. path = "examples/rust-ros2-dataflow/run.rs"
  135. required-features = ["ros2-examples"]
  136. # TODO: Fix example #192
  137. [[example]]
  138. name = "rust-dataflow-url"
  139. path = "examples/rust-dataflow-url/run.rs"
  140. [[example]]
  141. name = "cxx-dataflow"
  142. path = "examples/c++-dataflow/run.rs"
  143. [[example]]
  144. name = "cxx-arrow-dataflow"
  145. path = "examples/c++-arrow-dataflow/run.rs"
  146. [[example]]
  147. name = "python-dataflow"
  148. path = "examples/python-dataflow/run.rs"
  149. [[example]]
  150. name = "python-ros2-dataflow"
  151. path = "examples/python-ros2-dataflow/run.rs"
  152. required-features = ["ros2-examples"]
  153. [[example]]
  154. name = "python-operator-dataflow"
  155. path = "examples/python-operator-dataflow/run.rs"
  156. [[example]]
  157. name = "benchmark"
  158. path = "examples/benchmark/run.rs"
  159. [[example]]
  160. name = "multiple-daemons"
  161. path = "examples/multiple-daemons/run.rs"
  162. [[example]]
  163. name = "cmake-dataflow"
  164. path = "examples/cmake-dataflow/run.rs"
  165. [[example]]
  166. name = "cxx-ros2-dataflow"
  167. path = "examples/c++-ros2-dataflow/run.rs"
  168. required-features = ["ros2-examples"]
  169. [[example]]
  170. name = "rerun-viewer"
  171. path = "examples/rerun-viewer/run.rs"
  172. # The profile that 'dist' will build with
  173. [profile.dist]
  174. inherits = "release"
  175. lto = "thin"