Browse Source

Inherit package version from workspace root

This way, we don't need to update the version manually in all sub-crates on every release.
tags/v0.1.2
Philipp Oppermann 3 years ago
parent
commit
d8260d5d2c
Failed to extract signature
28 changed files with 31 additions and 27 deletions
  1. +4
    -0
      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/operator/Cargo.toml
  7. +1
    -1
      apis/rust/node/Cargo.toml
  8. +1
    -1
      apis/rust/operator/Cargo.toml
  9. +1
    -1
      apis/rust/operator/macros/Cargo.toml
  10. +1
    -1
      apis/rust/operator/types/Cargo.toml
  11. +1
    -1
      binaries/cli/Cargo.toml
  12. +1
    -1
      binaries/coordinator/Cargo.toml
  13. +1
    -1
      binaries/runtime/Cargo.toml
  14. +1
    -1
      examples/iceoryx/node/Cargo.toml
  15. +1
    -1
      examples/iceoryx/operator/Cargo.toml
  16. +1
    -1
      examples/iceoryx/sink/Cargo.toml
  17. +1
    -1
      examples/rust-dataflow-url/sink/Cargo.toml
  18. +1
    -1
      examples/rust-dataflow/node/Cargo.toml
  19. +1
    -1
      examples/rust-dataflow/operator/Cargo.toml
  20. +1
    -1
      examples/rust-dataflow/sink/Cargo.toml
  21. +1
    -1
      libraries/communication-layer/pub-sub/Cargo.toml
  22. +1
    -1
      libraries/communication-layer/request-reply/Cargo.toml
  23. +1
    -1
      libraries/core/Cargo.toml
  24. +1
    -1
      libraries/extensions/download/Cargo.toml
  25. +1
    -1
      libraries/extensions/telemetry/metrics/Cargo.toml
  26. +1
    -1
      libraries/extensions/telemetry/tracing/Cargo.toml
  27. +1
    -1
      libraries/extensions/zenoh-logger/Cargo.toml
  28. +1
    -1
      libraries/message/Cargo.toml

+ 4
- 0
Cargo.toml View File

@@ -18,12 +18,16 @@ members = [
"libraries/extensions/zenoh-logger",
]

[workspace.package]
version = "0.1.1"

[package]
name = "dora-examples"
version = "0.0.0"
edition = "2021"
license = "Apache-2.0"


[dev-dependencies]
eyre = "0.6.8"
tokio = "1.20.1"


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

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

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


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

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

[lib]


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

@@ -1,6 +1,6 @@
[package]
name = "dora-node-api-c"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



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

@@ -1,6 +1,6 @@
[package]
name = "dora-operator-api-c"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"
description = "C API implemetation for Dora Operator"


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

@@ -1,6 +1,6 @@
[package]
name = "dora-operator-api-python"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



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

@@ -1,6 +1,6 @@
[package]
name = "dora-node-api"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



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

@@ -1,6 +1,6 @@
[package]
name = "dora-operator-api"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"
description = "Rust API implemetation for Dora Operator"


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

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


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

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

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


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

@@ -1,6 +1,6 @@
[package]
name = "dora-cli"
version = "0.1.1"
version.workspace = true
edition = "2021"

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


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

@@ -1,6 +1,6 @@
[package]
name = "dora-coordinator"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



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

@@ -1,6 +1,6 @@
[package]
name = "dora-runtime"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



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

@@ -1,6 +1,6 @@
[package]
name = "iceoryx-example-node"
version = "0.1.1"
version.workspace = true
edition = "2021"

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


+ 1
- 1
examples/iceoryx/operator/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "iceoryx-example-operator"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



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

@@ -1,6 +1,6 @@
[package]
name = "iceoryx-example-sink"
version = "0.1.1"
version.workspace = true
edition = "2021"

# 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,6 +1,6 @@
[package]
name = "rust-dataflow-example-sink"
version = "0.1.1"
version.workspace = true
edition = "2021"

# 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,6 +1,6 @@
[package]
name = "rust-dataflow-example-node"
version = "0.1.1"
version.workspace = true
edition = "2021"

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


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

@@ -1,6 +1,6 @@
[package]
name = "rust-dataflow-example-operator"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



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

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

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


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

@@ -1,6 +1,6 @@
[package]
name = "communication-layer-pub-sub"
version = "0.1.1"
version.workspace = true
edition = "2021"

[features]


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

@@ -1,6 +1,6 @@
[package]
name = "communication-layer-request-reply"
version = "0.1.1"
version.workspace = true
edition = "2021"

[features]


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

@@ -1,6 +1,6 @@
[package]
name = "dora-core"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



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

@@ -1,6 +1,6 @@
[package]
name = "dora-download"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



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

@@ -1,6 +1,6 @@
[package]
name = "dora-metrics"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



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

@@ -1,6 +1,6 @@
[package]
name = "dora-tracing"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



+ 1
- 1
libraries/extensions/zenoh-logger/Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "zenoh-logger"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



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

@@ -1,6 +1,6 @@
[package]
name = "dora-message"
version = "0.1.1"
version.workspace = true
edition = "2021"
license = "Apache-2.0"



Loading…
Cancel
Save