[package]
edition = "2024"
rust-version = "1.88.0"
name = "rlg-test"
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 = """
Test utilities for downstream consumers of rlg. Capture log records
emitted inside a test scope and assert on them with the
`assert_logged!` macro.
"""
homepage = "https://rustlogs.com/"
documentation = "https://docs.rs/rlg-test"
readme = "README.md"
keywords = [
"rlg",
"logging",
"test",
"assertion",
"capture",
]
categories = [
"development-tools::testing",
"development-tools::debugging",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sebastienrousseau/rlg"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "rlg_test"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.parking_lot]
version = "0.12"
[dependencies.rlg]
version = "0.0.11"
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.criterion]
version = "0.8"
[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"