-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
49 lines (46 loc) · 1.05 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "proq"
version = "0.1.1-alpha.0"
authors = [
"Mahmut Bulut <[email protected]>",
"Patrice Billaut <[email protected]>"
]
keywords = ["prometheus", "metrics-gathering", "metrics", "aggregation", "async"]
categories = ["asynchronous", "api-bindings", "web-programming"]
homepage = "https://github.com/vertexclique/proq"
repository = "https://github.com/vertexclique/proq"
description = "Idiomatic Async Prometheus Query (PromQL) Client for Rust."
documentation = "https://docs.rs/proq"
readme = "README.md"
license = "Apache-2.0/MIT"
edition = "2018"
exclude = [
".github/*",
"examples/*",
"graphstore/*",
"tests/*",
"img/*",
"ci/*",
"benches/*",
"doc/*",
"*.png",
"*.dot",
"*.yml",
"*.toml",
"*.md"
]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
chrono = "0.4.10"
failure = "0.1.6"
http = "0.1.21"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.44"
serde_urlencoded = "0.6.1"
surf = "1.0.3"
url = "1.7"
url_serde = "0.2.0"
[dev-dependencies]
futures = "0.3.1"
once_cell = "1.2.0"