-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
33 lines (30 loc) · 891 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
31
32
33
[package]
name = "femme"
version = "2.2.1"
license = "MIT OR Apache-2.0"
authors = [
"lrlna <[email protected]>",
"yoshuawuyts <[email protected]>",
]
repository = "https://github.com/lrlna/femme"
documentation = "https://docs.rs/femme"
description = "Not just a pretty (inter)face: pretty-printer and ndjson logger for log crate."
keywords = ["pretty-printer", "ndjson", "femme", "log", "logger"]
readme = "README.md"
edition = "2018"
[dependencies]
log = { version = "0.4.14", features = [
"kv_unstable",
"std",
"kv_unstable_serde",
] }
serde = "1.0.97"
serde_derive = "1.0.97"
serde_json = "1.0.56"
cfg-if = "1.0.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
web-sys = { version = "0.3.25", features = ["console"] }
js-sys = "0.3.25"
wasm-bindgen = { version = "0.2.48", features = ["serde-serialize"] }
[dev-dependencies]
kv-log-macro = "1.0.5"