| 1 | [package] |
| 2 | name = "netdata-plugin-protocol" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | |
| 6 | [lints] |
| 7 | workspace = true |
| 8 | |
| 9 | [dependencies] |
| 10 | netdata-plugin-error = { path = "../error" } |
| 11 | netdata-plugin-types = { path = "../types" } |
| 12 | |
| 13 | phf = { workspace = true } |
| 14 | atoi = { workspace = true } |
| 15 | tokio-util = { workspace = true } |
| 16 | bytes = { workspace = true } |
| 17 | futures = { workspace = true } |
| 18 | tokio = { workspace = true, features = ["io-std", "io-util"] } |
| 19 | serde = { workspace = true } |
| 20 | serde_json = { workspace = true } |
| 21 | tracing = { workspace = true } |
| 22 | |
| 23 | [build-dependencies] |
| 24 | phf_codegen = { workspace = true } |
| 25 | |
| 26 | [dev-dependencies] |
| 27 | tokio = { version = "1.0", features = ["full"] } |
| 28 | futures-util = { version = "0.3", features = ["sink"] } |