-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (50 loc) · 2.36 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 = "netcheck"
version = "0.0.1"
edition = "2021"
authors = ["Miles Croxford <hello@milescroxford.com>"]
description = "A simple network checker"
license_file = "LICENSE"
repository = "https://github.com/m1/netcheck"
readme = "README.md"
build = "build.rs"
keywords = ["network", "networking", "monitoring", "observability", "availability"]
categories = ["development-tools", "development-tools::debugging", "network-programming", "command-line-utilities"]
[badges]
travis-ci = { repository = "m1/netcheck" }
codecov = { repository = "m1/netcheck" }
docs-rs = { repository = "m1/netcheck" }
crates-io = { repository = "m1/netcheck" }
maintenance = { status = "actively-developed" }
[dependencies]
chrono = { version = "0.4.34", features = [] }
clap = { version = "4.5.2", features = ["derive"] }
metrics = { version = "0.22.1", features = [] }
metrics-exporter-prometheus = { version = "0.13.1", features = ["http-listener", "tokio"] }
rand = { version = "0.9.0-alpha.0", features = [] }
reqwest = { version = "0.11.25", features = [] }
thiserror = { version = "1.0.57", features = [] }
tokio = { version = "1.36.0", features = ["rt", "rt-multi-thread", "macros", "time"] }
tracing = { version = "0.1.40", features = ["log", "std", ] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt", "std", "serde", "json", "serde_json", "time", "thread_local", ] }
pretty_assertions = { version = "1.4.0", features = [] }
prometheus = { version = "0.13.3", features = [] }
opentelemetry-prometheus = { version = "0.15.0", features = [] }
opentelemetry = { version = "0.22", features = ["otel_unstable"] }
opentelemetry_sdk = { version = "0.22", features = ["rt-tokio-current-thread", "metrics"] }
opentelemetry-stdout = { version = "0.3", features = ["trace"] }
actix-web-opentelemetry = { version = "0.16.0", features = ["metrics-prometheus"] }
actix-http = { version = "3.0", default-features = false, features = ["compress-zstd"] }
actix-web = { version = "4.0", default-features = false, features = ["compress-zstd"] }
opentelemetry-semantic-conventions = "0.14.0"
[build-dependencies]
built = { version = "0.7.1", features = [] }
[dev-dependencies]
grcov = { version = "0.8.19", features = [] }
pretty_assertions = { version = "1.1.0", features = [] }
httpmock = { version = "0.7.0", features = [] }
[lib]
path = "src/lib.rs"
[[bin]]
name = "netcheck"
path = "src/bin/cli.rs"