| 1 | [package] |
| 2 | name = "netdata-plugin-schema" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | rust-version.workspace = true |
| 6 | description = "Library for generating Netdata-compatible JSON Schema with UI annotations" |
| 7 | license = "MIT OR Apache-2.0" |
| 8 | |
| 9 | [lib] |
| 10 | doctest = false |
| 11 | |
| 12 | [lints] |
| 13 | workspace = true |
| 14 | |
| 15 | [dependencies] |
| 16 | netdata-plugin-error = { path = "../error" } |
| 17 | netdata-plugin-types = { path = "../types" } |
| 18 | schemars = { workspace = true } |
| 19 | serde = { workspace = true } |
| 20 | serde_json = { workspace = true } |