| 1 | [package] |
| 2 | name = "otel-signal-viewer-plugin" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | rust-version.workspace = true |
| 6 | |
| 7 | [lints] |
| 8 | workspace = true |
| 9 | |
| 10 | [[bin]] |
| 11 | name = "otel-signal-viewer-plugin" |
| 12 | path = "src/main.rs" |
| 13 | |
| 14 | [dependencies] |
| 15 | async-trait = { workspace = true } |
| 16 | |
| 17 | rt = { workspace = true } |
| 18 | netdata-plugin-error = { workspace = true } |
| 19 | netdata-plugin-protocol = { workspace = true } |
| 20 | netdata-plugin-schema = { workspace = true } |
| 21 | schemars = { workspace = true } |
| 22 | serde = { workspace = true } |
| 23 | serde_json = { workspace = true } |
| 24 | tracing = { workspace = true} |
| 25 | tokio = { workspace = true } |
| 26 | tokio-util = { workspace = true } |
| 27 | notify = { workspace = true } |
| 28 | thiserror = { workspace = true } |
| 29 | foyer = { workspace = true } |
| 30 | |
| 31 | # Configuration support |
| 32 | anyhow = { workspace = true } |
| 33 | bytesize = { workspace = true } |
| 34 | num_cpus = "1" |
| 35 | serde_yaml = { workspace = true } |
| 36 | parking_lot = { workspace = true } |
| 37 | |
| 38 | # Business logic |
| 39 | # journal-engine = { workspace = true } |
| 40 | # types = { path = "../types" } |
| 41 | |
| 42 | journal-core = { workspace = true } |
| 43 | journal-index = { workspace = true } |
| 44 | journal-function = { workspace = true } |
| 45 | journal-registry = { workspace = true } |