refactor: replace external PromqlResult type with internal Data type
This removes the need for the user to import types from the `prometheus-http-query` crate where type annotations are required. These changes also ensure that the public API of mquery remains more stable, as it is decoupled from the external types.
parent
10b564a4
No related branches found
No related tags found
... | ... | @@ -6,6 +6,7 @@ edition = "2021" |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[dependencies] | ||
enum-as-inner = "0.6.0" | ||
prometheus-http-query = "0.8.0" | ||
reqwest = "0.11.22" | ||
url = "2.5.0" | ||
... | ... |
Please register or sign in to comment