mirror of
https://github.com/tokio-rs/tracing.git
synced 2025-09-27 13:01:55 +00:00

Update the version of the `matchers` crate to 0.2. This requires also adding a direct dependency on `regex-automata` to enable the `std` feature.
30 lines
851 B
TOML
30 lines
851 B
TOML
[package]
|
|
name = "tracing-journald"
|
|
version = "0.3.1"
|
|
authors = ["Benjamin Saunders <ben.e.saunders@gmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://github.com/tokio-rs/tracing"
|
|
homepage = "https://tokio.rs"
|
|
description = "rich journald subscriber for `tracing`"
|
|
categories = [
|
|
"development-tools::debugging",
|
|
"development-tools::profiling",
|
|
]
|
|
keywords = ["tracing", "journald"]
|
|
rust-version = "1.65.0"
|
|
|
|
[dependencies]
|
|
libc = "0.2.126"
|
|
tracing-core = { path = "../tracing-core", version = "0.1.28" }
|
|
tracing-subscriber = { path = "../tracing-subscriber", version = "0.3.0", default-features = false, features = ["registry"] }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0.82"
|
|
serde = { version = "1.0.140", features = ["derive"] }
|
|
tracing = { path = "../tracing", version = "0.1.35" }
|
|
|
|
[lints]
|
|
workspace = true
|