2021-02-01 21:43:01 +00:00
|
|
|
[package]
|
|
|
|
name = "logfmt"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Andrew Lamb <andrew@nerdnetworks.org>"]
|
2021-08-17 16:19:22 +00:00
|
|
|
description = "tracing_subscriber layer for writing out logfmt formatted events"
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2021-02-01 21:43:01 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dependencies] # In alphabetical order
|
2021-04-02 20:14:30 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2021-10-25 09:25:39 +00:00
|
|
|
tracing-subscriber = "0.3"
|
2021-11-19 14:21:57 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2021-02-01 21:43:01 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dev-dependencies] # In alphabetical order
|
2022-03-07 08:54:20 +00:00
|
|
|
once_cell = { version = "1.10.0", features = ["parking_lot"] }
|
2022-02-01 11:50:42 +00:00
|
|
|
parking_lot = "0.12"
|
2021-12-01 19:21:28 +00:00
|
|
|
regex = "1"
|
2021-10-25 15:01:39 +00:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|