-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
29 lines (25 loc) · 927 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "nu_plugin_prometheus"
version = "0.7.0"
edition = "2021"
authors = ["Eric Hodel <[email protected]>"]
description = "A nushell plugin for querying prometheus"
homepage = "https://github.com/drbrain/nu_plugin_prometheus"
license = "MIT"
readme = "README.md"
repository = "https://github.com/drbrain/nu_plugin_prometheus"
keywords = ["nu", "plugin", "prometheus"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.38"
nom = "7.1.3"
nu-plugin = "0.100.0"
nu-protocol = { version = "0.100.0", features = [ "plugin" ] }
prometheus-http-query = "0.8.3"
reqwest = { version = "0.12.5", features = [ "native-tls" ] }
tokio = { version ="1.41.1", features = [ "macros", "rt" ] }
[dev-dependencies]
rstest = { version = "0.23", default-features = false }
serde = "1.0.215"
serde_json = "1.0.133"