aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 97087eae77194faa30961d13d2eaedd00f648fef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "containerspy"
authors = ["Hazel Atkinson <yellowsink@riseup.net>"]
version = "0.1.3-beta"
edition = "2021"
description = "A lightweight Docker OTLP stats exporter"
license-file = "LICENSE.md"
repository = "https://github.com/uwu/containerspy"
publish = false

[dependencies]
anyhow = "1.0.97"
bollard = "0.18.1"
chrono = { version = "0.4.40", default-features = false, features = ["now"] }
confique = { version = "0.3.0", features = ["json5"] }
opentelemetry = { version = "0.29.1", features = ["metrics"] }
opentelemetry-otlp = { version = "0.29.0", features = ["grpc-tonic"] }
opentelemetry_sdk = { version = "0.29.0", features = ["metrics"] }
tokio = { version = "1.44.1", features = ["macros", "signal"] }
tokio-stream = "0.1.17"
tokio-util = "0.7.14"

[build-dependencies]
built = "0.7.7"