-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (49 loc) · 1.55 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
50
51
52
53
54
55
56
[package]
name = "dagster-prom-exporter"
version = "0.1.0"
edition = "2021"
rust-version = "1.70.0"
license = "MIT OR Apache-2.0"
repository = "https://gitlab.com/Chrisss93/dagster-prom-exporter"
keywords = ["metrics"]
[dependencies]
hyper = { version = "0.14.26", features = ["server", "http1"] }
prometheus-client = { version = "0.21.0" }
graphql_client = { version = "0.13.0", features = ["graphql_query_derive", "reqwest"] }
clap = { version = "4.3.3", features = ["derive"] }
tokio = { version = "1.28.2", features = ["net"] }
url = { version = "2.4.0" }
bytes = { version = "1" }
reqwest = { version = "0.11.18", features = ["json"] }
serde = { version = "1" }
anyhow = { version = "1" }
parking_lot = { version = "0.12.1" }
[dev-dependencies]
testcontainers = { version = "0.15.0", features = ["experimental"] }
bollard = { version = "0.13.0" }
futures-util = { version = "0.3.28" }
tar = { version = "0.4.40" }
tokio = { version = "1.28.2", features = ["macros"] }
prometheus-parse = { version = "0.2.4" }
serde_json = { version = "1" }
indoc = { version = "2" }
[patch.crates-io]
testcontainers = { git = "https://github.com/Chrisss93/testcontainers-rs.git", branch = "experimental_inner_client" }
[[bin]]
name = "app"
path = "src/main.rs"
[profile.release]
debug = false
debug-assertions = false
incremental = false
lto = "thin"
opt-level = 3
overflow-checks = false
panic = "abort"
rpath = false
strip = true
[package.metadata.binstall]
[package.metadata.binstall.overrides.x86_64-pc-windows-gnu]
pkg-fmt = "zip"
[package.metadata.vet]
store = { path = "./.cargo/audits" }