[package]
edition = "2024"
rust-version = "1.88.0"
name = "rlg-ebpf"
version = "0.0.11"
authors = ["Sebastien Rousseau <sebastian.rousseau@gmail.com>"]
build = false
include = [
"/Cargo.toml",
"/LICENSE-APACHE",
"/LICENSE-MIT",
"/README.md",
"/src/**",
"/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Kernel-context enrichment for rlg records. Attaches PID, TID, UID,
and (future) network 4-tuple to every log record. Optional eBPF
kernel-side attach programs land in Phase 21.1.
"""
homepage = "https://rustlogs.com/"
documentation = "https://docs.rs/rlg-ebpf"
readme = "README.md"
keywords = [
"ebpf",
"observability",
"logging",
"rlg",
"linux",
]
categories = [
"development-tools::debugging",
"os::linux-apis",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sebastienrousseau/rlg"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
ebpf = []
[lib]
name = "rlg_ebpf"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.rlg]
version = "0.0.11"
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.criterion]
version = "0.8"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[lints.rust]
dead_code = "deny"
missing_copy_implementations = "warn"
missing_debug_implementations = "forbid"
missing_docs = "deny"
non_ascii_idents = "forbid"
unreachable_pub = "forbid"
unsafe_code = "deny"
unused_extern_crates = "warn"