16 lines
437 B
TOML
16 lines
437 B
TOML
[package]
|
|
name = "logfmt"
|
|
version = "0.1.0"
|
|
authors = ["Andrew Lamb <andrew@nerdnetworks.org>"]
|
|
description="tracing_subscriber layer for writing out logfmt formatted events"
|
|
edition = "2018"
|
|
|
|
[dependencies] # In alphabetical order
|
|
tracing = { version = "0.1" }
|
|
tracing-subscriber = "0.2.15"
|
|
|
|
[dev-dependencies] # In alphabetical order
|
|
once_cell = { version = "1.4.0", features = ["parking_lot"] }
|
|
parking_lot = "0.11.1"
|
|
regex = "1.4.3"
|