-
Notifications
You must be signed in to change notification settings - Fork 29
/
Cargo.toml
24 lines (22 loc) · 947 Bytes
/
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
[workspace.package]
version = "2.0.0"
edition = "2021"
authors = ["Fiberplane <info@fiberplane.com>", "Evan Schwartz <3262610+emschwartz@users.noreply.github.com>"]
description = " Easily add metrics to your code that actually help you spot and debug issues in production. Built on Prometheus and OpenTelemetry."
documentation = "https://docs.rs/autometrics"
repository = "https://github.com/autometrics-dev/autometrics-rs"
homepage = "https://autometrics.dev"
license = "MIT OR Apache-2.0"
keywords = ["metrics", "prometheus", "opentelemetry"]
categories = ["development-tools::debugging", "development-tools::profiling"]
[workspace]
default-members = ["autometrics", "autometrics-cli", "autometrics-macros"]
members = [
"autometrics",
"autometrics-cli",
"autometrics-macros",
"examples/*"
]
exclude = ["examples/data", "examples/target"]
[workspace.dependencies]
autometrics-macros = { version = "2.0.0", path = "autometrics-macros" }