-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathCargo.toml
36 lines (30 loc) · 1.16 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
[package]
name = "metrics-exporter-tcp"
version = "0.10.0"
authors = ["Toby Lawrence <[email protected]>"]
edition = "2018"
rust-version = "1.70.0"
license = "MIT"
description = "A metrics-compatible exporter that outputs metrics to clients over TCP."
homepage = "https://github.com/metrics-rs/metrics"
repository = "https://github.com/metrics-rs/metrics"
documentation = "https://docs.rs/metrics-exporter-tcp"
readme = "README.md"
categories = ["development-tools::debugging"]
keywords = ["metrics", "telemetry", "tcp"]
[dependencies]
metrics = { version = "^0.23", path = "../metrics" }
bytes = { version = "1", default-features = false }
crossbeam-channel = { version = "0.5", default-features = false, features = ["std"] }
prost = { version = "0.12", default-features = false }
prost-types = { version = "0.12", default-features = false, features = ["std"] }
mio = { version = "1.0", default-features = false, features = ["os-poll", "net"] }
tracing = { version = "0.1", default-features = false, features = ["attributes"] }
[build-dependencies]
prost-build = "0.12"
home = "=0.5.5"
[dev-dependencies]
quanta = "0.12"
tracing = "0.1"
tracing-subscriber = "0.3"
rand = "0.8"