[package]
edition = "2021"
rust-version = "1.75"
name = "gregg-protocol"
version = "1.0.0"
authors = ["David Bowman <dbowman91@proton.me>"]
build = false
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE",
"tests/fixtures/*.json",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Versioned JSON wire types, metric capabilities, and identity structures shared by the gregg daemon and client."
homepage = "https://github.com/eggstack/gregg"
readme = "README.md"
keywords = [
"metrics",
"monitoring",
"system",
"protocol",
"serde",
]
categories = [
"api-bindings",
"data-structures",
"encoding",
]
license = "MIT"
repository = "https://github.com/eggstack/gregg"
[features]
default = []
test_support = []
[lib]
name = "gregg_protocol"
path = "src/lib.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
default-features = false
[dependencies.serde_json]
version = "1.0"
features = ["std"]
default-features = false
[dependencies.thiserror]
version = "1.0"
default-features = false
[dev-dependencies.serde_json]
version = "1.0"
features = ["std"]
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"