forked from slog-rs/json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (26 loc) · 818 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "slog-json"
version = "2.5.0"
edition = "2018"
authors = ["Dawid Ciężarkiewicz <[email protected]>"]
description = "JSON drain for slog-rs"
keywords = ["slog", "logging", "json"]
license = "MPL-2.0 OR MIT OR Apache-2.0"
documentation = "https://docs.rs/slog-json"
homepage = "https://github.com/slog-rs/slog"
repository = "https://github.com/slog-rs/json"
readme = "README.md"
[features]
nested-values = ["erased-serde", "slog/nested-values"]
dynamic-keys = ["slog/dynamic-keys"]
default = []
[dependencies]
slog = { version = "2.1.1" }
serde_json = "1"
serde = "1"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
erased-serde = {version = "0.3", optional = true }
[dev-dependencies]
slog-async = "2"
[package.metadata.docs.rs]
features = ["nested-values", "dynamic-keys"]