Browse Source

Set dora subcrate dependencies as workspace dependencies

tags/v0.1.2
Philipp Oppermann 3 years ago
parent
commit
ce4fd8b027
Failed to extract signature
10 changed files with 14 additions and 11 deletions
  1. +5
    -0
      Cargo.toml
  2. +1
    -3
      apis/c++/node/Cargo.toml
  3. +1
    -1
      apis/c++/operator/Cargo.toml
  4. +1
    -1
      binaries/coordinator/Cargo.toml
  5. +1
    -1
      binaries/runtime/Cargo.toml
  6. +1
    -1
      examples/iceoryx/node/Cargo.toml
  7. +1
    -1
      examples/iceoryx/sink/Cargo.toml
  8. +1
    -1
      examples/rust-dataflow-url/sink/Cargo.toml
  9. +1
    -1
      examples/rust-dataflow/node/Cargo.toml
  10. +1
    -1
      examples/rust-dataflow/sink/Cargo.toml

+ 5
- 0
Cargo.toml View File

@@ -21,6 +21,11 @@ members = [
[workspace.package]
version = "0.1.1"

[workspace.dependencies]
dora-node-api = { version = "0.1.1", path = "apis/rust/node", default-features = false }
dora-operator-api = { version = "0.1.1", path = "apis/rust/operator", default-features = false }
dora-core = { version = "0.1.1", path = "libraries/core" }

[package]
name = "dora-examples"
version = "0.0.0"


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

@@ -10,9 +10,7 @@ crate-type = ["staticlib"]

[dependencies]
cxx = "1.0.73"
dora-node-api = { version = "0.1.1", path = "../../../apis/rust/node", default-features = false, features = [
"zenoh",
] }
dora-node-api = { workspace = true, features = ["zenoh"] }
eyre = "0.6.8"

[build-dependencies]


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

@@ -8,7 +8,7 @@ crate-type = ["staticlib"]

[dependencies]
cxx = "1.0.73"
dora-operator-api = { version = "0.1.1", path = "../../../apis/rust/operator" }
dora-operator-api = { workspace = true }
eyre = "0.6.8"
futures = "0.3.21"
rand = "0.8.5"


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

@@ -20,7 +20,7 @@ clap = { version = "3.1.8", features = ["derive"] }
uuid = { version = "1.2.1" }
time = "0.3.9"
rand = "0.8.5"
dora-core = { version = "0.1.1", path = "../../libraries/core" }
dora-core = { workspace = true }
dora-message = { path = "../../libraries/message" }
tracing = "0.1.36"
tracing-subscriber = "0.3.15"


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

@@ -14,7 +14,7 @@ dora-node-api = { path = "../../apis/rust/node", default-features = false, featu
] }
dora-operator-api-python = { path = "../../apis/python/operator" }
dora-operator-api-types = { path = "../../apis/rust/operator/types" }
dora-core = { version = "0.1.1", path = "../../libraries/core" }
dora-core = { workspace = true }
dora-tracing = { path = "../../libraries/extensions/telemetry/tracing", optional = true }
dora-metrics = { path = "../../libraries/extensions/telemetry/metrics", optional = true }
opentelemetry = { version = "0.17", features = [


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

@@ -6,6 +6,6 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dora-node-api = { version = "0.1.1", path = "../../../apis/rust/node" }
dora-node-api = { workspace = true }
eyre = "0.6.8"
rand = "0.8.5"

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

@@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dora-node-api = { version = "0.1.1", path = "../../../apis/rust/node" }
dora-node-api = { workspace = true }
eyre = "0.6.8"
futures = "0.3.21"
tokio = { version = "1.20.1", features = ["macros"] }

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

@@ -6,5 +6,5 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dora-node-api = { version = "0.1.1", path = "../../../apis/rust/node" }
dora-node-api = { workspace = true }
eyre = "0.6.8"

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

@@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dora-node-api = { version = "0.1.1", path = "../../../apis/rust/node" }
dora-node-api = { workspace = true }
eyre = "0.6.8"
futures = "0.3.21"
rand = "0.8.5"


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

@@ -6,5 +6,5 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dora-node-api = { version = "0.1.1", path = "../../../apis/rust/node" }
dora-node-api = { workspace = true }
eyre = "0.6.8"

Loading…
Cancel
Save