forked from softprops/json-env-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (24 loc) · 868 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
[package]
name = "json_env_logger"
version = "0.1.1"
authors = ["softprops <[email protected]>"]
edition = "2018"
description = "A structured JSON logger for Rust"
documentation = "https://docs.rs/json_env_logger/"
homepage = "https://github.com/softprops/json-env-logger"
repository = "https://github.com/softprops/json-env-logger"
keywords = ["json", "log"]
license = "MIT"
categories = ["development-tools::debugging"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
kv-log-macro = "1.0"
backtrace = { version = "0.3", optional = true }
chrono = { version = "0.4", optional = true }
env_logger = { version = "0.11", default_features = false }
log = { version = "0.4", features = ["kv_unstable", "std"] }
serde_json = "1.0"
[features]
default = []
iso-timestamps = ["chrono"]