Browse Source

Fix: enable required node-api features for examples

tags/v0.1.2
Philipp Oppermann 3 years ago
parent
commit
33c4cc0b60
Failed to extract signature
5 changed files with 5 additions and 5 deletions
  1. +1
    -1
      examples/iceoryx/node/Cargo.toml
  2. +1
    -1
      examples/iceoryx/sink/Cargo.toml
  3. +1
    -1
      examples/rust-dataflow-url/sink/Cargo.toml
  4. +1
    -1
      examples/rust-dataflow/node/Cargo.toml
  5. +1
    -1
      examples/rust-dataflow/sink/Cargo.toml

+ 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 = { workspace = true }
dora-node-api = { workspace = true, features = ["iceoryx"] }
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 = { workspace = true }
dora-node-api = { workspace = true, features = ["iceoryx"] }
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 = { workspace = true }
dora-node-api = { workspace = true, features = ["zenoh"] }
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 = { workspace = true }
dora-node-api = { workspace = true, features = ["zenoh"] }
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 = { workspace = true }
dora-node-api = { workspace = true, features = ["zenoh"] }
eyre = "0.6.8"

Loading…
Cancel
Save