mirror of
https://github.com/tokio-rs/tracing.git
synced 2025-09-29 22:10:38 +00:00

# 0.1.0-beta.1 (November 29, 2024) [ [crates.io][crate-0.1.0-beta.1] ] | [ [docs.rs][docs-0.1.0-beta.1] ] `tracing-mock` provides tools for making assertions about what `tracing` diagnostics are emitted by code under test. - Initial beta release [docs-0.1.0-beta.1]: https://docs.rs/tracing-mock/0.1.0-beta.1 [crate-0.1.0-beta.1]: https://crates.io/crates/tracing-mock/0.1.0-beta.1
45 lines
1.2 KiB
TOML
45 lines
1.2 KiB
TOML
## BIG SCARY NOTE
|
|
# This Cargo.toml does not match the repo conventions YET
|
|
# Before releasing to crates.io: make it so!
|
|
|
|
[package]
|
|
name = "tracing-mock"
|
|
version = "0.1.0-beta.1"
|
|
authors = [
|
|
"Eliza Weisman <eliza@buoyant.io>",
|
|
"Hayden Stainsby <hds@caffeineconcepts.com>",
|
|
"Tokio Contributors <team@tokio.rs>",
|
|
]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://github.com/tokio-rs/tracing"
|
|
homepage = "https://tokio.rs"
|
|
description = """
|
|
Utilities for testing `tracing` and crates that uses it.
|
|
"""
|
|
categories = [
|
|
"development-tools::testing"
|
|
]
|
|
keywords = [
|
|
"tracing",
|
|
"mock",
|
|
"testing"
|
|
]
|
|
edition = "2018"
|
|
rust-version = "1.63.0"
|
|
|
|
[dependencies]
|
|
tracing = { path = "../tracing", version = "0.1.41", features = ["std", "attributes"], default-features = false }
|
|
tracing-core = { path = "../tracing-core", version = "0.1.28", default-features = false }
|
|
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3", default-features = false, features = ["registry"], optional = true }
|
|
|
|
# Fix minimal-versions; tokio-test fails with otherwise acceptable 0.1.0
|
|
tokio-stream = { version = "0.1.9", optional = true }
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|