-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (30 loc) · 1.06 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
[package]
name = "mcexport"
description = "Minecraft Server Prometheus Probe Exporter"
version = "0.6.0"
authors = [
"Joshua Dean Küpper <[email protected]>"
]
license = "MIT"
repository = "https://github.com/scrayosnet/mcexport"
readme = "README.md"
documentation = "https://github.com/scrayosnet/mcexport"
homepage = "https://github.com/scrayosnet/mcexport"
keywords = ["minecraft", "prometheus", "monitoring", "exporter", "ping"]
categories = ["development-tools", "command-line-utilities"]
edition = "2021"
rust-version = "1.75.0"
[dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net"] }
axum = { version = "0.8", default-features = false, features = ["http1", "tokio", "tower-log", "tracing", "query"] }
tracing = "0.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
hickory-resolver = "0.24"
thiserror = "2"
prometheus-client = "0.23"
tracing-subscriber = "0.3"
tower-http = { version = "0.6", features = ["trace"] }
clap = { version = "4.5.26", features = ["derive", "env"] }
[dev-dependencies]
serde_test = "1"