Browse Source

chore: use workspace edition

tags/v0.3.9-rc1
yjhmelody 1 year ago
parent
commit
ca614753a1
44 changed files with 45 additions and 44 deletions
  1. +2
    -1
      Cargo.toml
  2. +1
    -1
      apis/c++/node/Cargo.toml
  3. +1
    -1
      apis/c++/operator/Cargo.toml
  4. +1
    -1
      apis/c/node/Cargo.toml
  5. +1
    -1
      apis/c/operator/Cargo.toml
  6. +1
    -1
      apis/python/node/Cargo.toml
  7. +1
    -1
      apis/python/operator/Cargo.toml
  8. +1
    -1
      apis/rust/node/Cargo.toml
  9. +1
    -1
      apis/rust/operator/Cargo.toml
  10. +1
    -1
      apis/rust/operator/macros/Cargo.toml
  11. +1
    -1
      apis/rust/operator/types/Cargo.toml
  12. +1
    -1
      binaries/cli/Cargo.toml
  13. +1
    -1
      binaries/coordinator/Cargo.toml
  14. +1
    -1
      binaries/daemon/Cargo.toml
  15. +1
    -1
      binaries/runtime/Cargo.toml
  16. +1
    -1
      examples/benchmark/node/Cargo.toml
  17. +1
    -1
      examples/benchmark/sink/Cargo.toml
  18. +1
    -1
      examples/multiple-daemons/node/Cargo.toml
  19. +1
    -1
      examples/multiple-daemons/operator/Cargo.toml
  20. +1
    -1
      examples/multiple-daemons/sink/Cargo.toml
  21. +1
    -1
      examples/rust-dataflow-url/sink/Cargo.toml
  22. +1
    -1
      examples/rust-dataflow/node/Cargo.toml
  23. +1
    -1
      examples/rust-dataflow/sink-dynamic/Cargo.toml
  24. +1
    -1
      examples/rust-dataflow/sink/Cargo.toml
  25. +1
    -1
      examples/rust-dataflow/status-node/Cargo.toml
  26. +1
    -1
      examples/rust-ros2-dataflow/node/Cargo.toml
  27. +1
    -1
      libraries/arrow-convert/Cargo.toml
  28. +1
    -1
      libraries/communication-layer/pub-sub/Cargo.toml
  29. +1
    -1
      libraries/communication-layer/request-reply/Cargo.toml
  30. +1
    -1
      libraries/core/Cargo.toml
  31. +1
    -1
      libraries/extensions/download/Cargo.toml
  32. +1
    -1
      libraries/extensions/ros2-bridge/Cargo.toml
  33. +1
    -1
      libraries/extensions/ros2-bridge/msg-gen/Cargo.toml
  34. +1
    -1
      libraries/extensions/ros2-bridge/python/Cargo.toml
  35. +1
    -1
      libraries/extensions/telemetry/metrics/Cargo.toml
  36. +1
    -1
      libraries/extensions/telemetry/tracing/Cargo.toml
  37. +1
    -1
      libraries/message/Cargo.toml
  38. +1
    -1
      libraries/shared-memory-server/Cargo.toml
  39. +1
    -1
      node-hub/dora-kit-car/Cargo.toml
  40. +1
    -1
      node-hub/dora-record/Cargo.toml
  41. +1
    -1
      node-hub/dora-rerun/Cargo.toml
  42. +1
    -1
      node-hub/openai-proxy-server/Cargo.toml
  43. +1
    -1
      node-hub/terminal-print/Cargo.toml
  44. +1
    -1
      tests/queue_size_latest_data_rust/receive_data/Cargo.toml

+ 2
- 1
Cargo.toml View File

@@ -42,6 +42,7 @@ members = [
]

[workspace.package]
edition = "2021"
# Make sure to also bump `apis/node/python/__init__.py` version.
version = "0.3.8"
description = "`dora` goal is to be a low latency, composable, and distributed data flow."
@@ -87,7 +88,7 @@ pythonize = "0.22"
[package]
name = "dora-examples"
version = "0.0.0"
edition = "2021"
edition.workspace = true
license = "Apache-2.0"
publish = false



+ 1
- 1
apis/c++/node/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-node-api-cxx"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
apis/c++/operator/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-operator-api-cxx"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
apis/c/node/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-node-api-c"
version.workspace = true
edition = "2021"
edition.workspace = true

documentation.workspace = true
description.workspace = true


+ 1
- 1
apis/c/operator/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-operator-api-c"
version.workspace = true
edition = "2021"
edition.workspace = true
description = "C API implementation for Dora Operator"
documentation.workspace = true
license.workspace = true


+ 1
- 1
apis/python/node/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
version.workspace = true
name = "dora-node-api-python"
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
apis/python/operator/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-operator-api-python"
version.workspace = true
edition = "2021"
edition.workspace = true

documentation.workspace = true
description.workspace = true


+ 1
- 1
apis/rust/node/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-node-api"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
apis/rust/operator/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-operator-api"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
apis/rust/operator/macros/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-operator-api-macros"
version.workspace = true
edition = "2021"
edition.workspace = true
description = "Rust API Macros for Dora Operator"
documentation.workspace = true
license.workspace = true


+ 1
- 1
apis/rust/operator/types/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-operator-api-types"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
binaries/cli/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-cli"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
binaries/coordinator/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-coordinator"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
binaries/daemon/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-daemon"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
binaries/runtime/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-runtime"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
examples/benchmark/node/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "benchmark-example-node"
version.workspace = true
edition = "2021"
edition.workspace = true
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html


+ 1
- 1
examples/benchmark/sink/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "benchmark-example-sink"
version.workspace = true
edition = "2021"
edition.workspace = true
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html


+ 1
- 1
examples/multiple-daemons/node/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "multiple-daemons-example-node"
version.workspace = true
edition = "2021"
edition.workspace = true
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html


+ 1
- 1
examples/multiple-daemons/operator/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "multiple-daemons-example-operator"
version.workspace = true
edition = "2021"
edition.workspace = true
license.workspace = true
publish = false



+ 1
- 1
examples/multiple-daemons/sink/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "multiple-daemons-example-sink"
version.workspace = true
edition = "2021"
edition.workspace = true
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html


+ 1
- 1
examples/rust-dataflow-url/sink/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "rust-dataflow-url-example-sink"
version.workspace = true
edition = "2021"
edition.workspace = true
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html


+ 1
- 1
examples/rust-dataflow/node/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "rust-dataflow-example-node"
version.workspace = true
edition = "2021"
edition.workspace = true
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html


+ 1
- 1
examples/rust-dataflow/sink-dynamic/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "rust-dataflow-example-sink-dynamic"
version.workspace = true
edition = "2021"
edition.workspace = true
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html


+ 1
- 1
examples/rust-dataflow/sink/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "rust-dataflow-example-sink"
version.workspace = true
edition = "2021"
edition.workspace = true
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html


+ 1
- 1
examples/rust-dataflow/status-node/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "rust-dataflow-example-status-node"
version.workspace = true
edition = "2021"
edition.workspace = true
license.workspace = true
publish = false



+ 1
- 1
examples/rust-ros2-dataflow/node/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "rust-ros2-dataflow-example-node"
version.workspace = true
edition = "2021"
edition.workspace = true
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html


+ 1
- 1
libraries/arrow-convert/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-arrow-convert"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
libraries/communication-layer/pub-sub/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "communication-layer-pub-sub"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
libraries/communication-layer/request-reply/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "communication-layer-request-reply"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
libraries/core/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-core"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
libraries/extensions/download/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-download"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
libraries/extensions/ros2-bridge/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-ros2-bridge"
version = "0.1.0"
edition = "2021"
edition.workspace = true
links = "dora-ros2-bridge"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html


+ 1
- 1
libraries/extensions/ros2-bridge/msg-gen/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-ros2-bridge-msg-gen"
version = "0.1.0"
edition = "2021"
edition.workspace = true
authors = ["Yuma Hiramatsu <yuma.hiramatsu@gmail.com>"]
license = "Apache-2.0"



+ 1
- 1
libraries/extensions/ros2-bridge/python/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-ros2-bridge-python"
version = "0.1.0"
edition = "2021"
edition.workspace = true


[dependencies]


+ 1
- 1
libraries/extensions/telemetry/metrics/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-metrics"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
libraries/extensions/telemetry/tracing/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-tracing"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
libraries/message/Cargo.toml View File

@@ -2,7 +2,7 @@
name = "dora-message"
# versioned separately from the other dora crates
version = "0.4.2"
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
libraries/shared-memory-server/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "shared-memory-server"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
node-hub/dora-kit-car/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "dora-kit-car"
edition = "2021"
edition.workspace = true
version.workspace = true
description.workspace = true
documentation.workspace = true


+ 1
- 1
node-hub/dora-record/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-record"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
node-hub/dora-rerun/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-rerun"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
node-hub/openai-proxy-server/Cargo.toml View File

@@ -1,7 +1,7 @@
[package]
name = "dora-openai-proxy-server"
version.workspace = true
edition = "2021"
edition.workspace = true
documentation.workspace = true
description.workspace = true
license.workspace = true


+ 1
- 1
node-hub/terminal-print/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "terminal-print"
edition = "2021"
edition.workspace = true
version.workspace = true
description.workspace = true
documentation.workspace = true


+ 1
- 1
tests/queue_size_latest_data_rust/receive_data/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "receive_data"
edition = "2021"
edition.workspace = true
version.workspace = true
description.workspace = true
documentation.workspace = true


Loading…
Cancel
Save