dipstick/Cargo.toml

53 lines
1.5 KiB
TOML
Raw Normal View History

2017-08-19 14:29:31 +00:00
[package]
name = "dipstick"
2022-07-12 18:11:39 +00:00
version = "0.9.1"
2017-08-19 14:29:31 +00:00
authors = ["Francis Lalonde <fralalonde@gmail.com>"]
2022-07-12 18:11:39 +00:00
description = """Fast, all-purpose metrics library decoupling instrumentation from reporting backends.
Like logging frameworks but with counters, timers and gauges.
Supports combined outputs (e.g. log + graphite), sampling, aggregation, scheduled push, etc."""
2017-08-19 14:29:31 +00:00
documentation = "https://docs.rs/dipstick"
homepage = "https://github.com/fralalonde/dipstick"
repository = "https://github.com/fralalonde/dipstick"
2017-08-19 17:14:11 +00:00
readme = "README.md"
keywords = ["metrics", "statsd", "graphite", "timer", "prometheus"]
2017-08-31 05:02:12 +00:00
license = "MIT/Apache-2.0"
2022-07-12 18:11:39 +00:00
edition = "2021"
2017-08-19 14:29:31 +00:00
[badges]
travis-ci = { repository = "fralalonde/dipstick", branch = "master" }
[dependencies]
log = "0.4"
2018-09-19 20:38:17 +00:00
lazy_static = "1"
2018-01-26 20:40:15 +00:00
atomic_refcell = "0.1"
2018-05-10 17:06:36 +00:00
skeptic = { version = "0.13", optional = true }
2018-10-04 21:28:25 +00:00
num = { version = "0.2", default-features = false }
2020-05-23 03:47:18 +00:00
crossbeam-channel = { version = "0.4", optional = true }
parking_lot = { version = "0.10", optional = true }
2017-10-05 14:52:59 +00:00
2018-06-14 16:37:21 +00:00
# FIXME required only for random seed for sampling
time = "0.1"
2018-06-26 19:51:49 +00:00
2020-05-23 03:47:18 +00:00
minreq = { version = "2" }
2018-06-26 19:51:49 +00:00
2018-06-26 15:46:55 +00:00
# optional dep for standalone http pull metrics
2020-05-23 03:47:18 +00:00
tiny_http = { version = "0.7", optional = true }
2018-06-14 16:37:21 +00:00
2018-05-10 17:06:36 +00:00
[build-dependencies]
skeptic = { version = "0.13", optional = true }
2018-01-08 05:32:32 +00:00
2017-08-19 14:29:31 +00:00
[features]
default = [ "self_metrics", "crossbeam-channel", "parking_lot" ]
2017-10-06 13:43:54 +00:00
bench = []
2018-06-22 05:08:04 +00:00
self_metrics = []
2018-10-12 20:44:39 +00:00
tokio = []
2018-01-08 05:32:32 +00:00
[package.metadata.release]
#sign-commit = true
2018-09-19 20:38:17 +00:00
#upload-handbook = true
2018-01-08 05:32:32 +00:00
pre-release-replacements = [
2018-01-17 17:37:38 +00:00
{file="README.md", search="dipstick = \"[a-z0-9\\.-]+\"", replace="dipstick = \"{{version}}\""}
2019-05-22 02:01:24 +00:00
]