Browse Source

Enable node tracing for dataflow example

tags/v0.2.3-rc
Philipp Oppermann 2 years ago
parent
commit
e3d0e0c82e
Failed to extract signature
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      examples/rust-dataflow/node/Cargo.toml
  2. +1
    -1
      examples/rust-dataflow/sink/Cargo.toml

+ 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 = ["tracing"] }
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 = ["tracing"] }
eyre = "0.6.8"

Loading…
Cancel
Save