forked from sile/sloggers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (40 loc) · 1 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "sloggers"
version = "2.1.1"
authors = ["Takeru Ohta <phjgt308@gmail.com>"]
description = "This library provides frequently used slog loggers and convenient functions"
homepage = "https://github.com/sile/sloggers"
repository = "https://github.com/sile/sloggers"
readme = "README.md"
keywords = ["logger"]
license = "MIT"
edition = "2018"
[badges]
coveralls = {repository = "sile/sloggers"}
[features]
default = ["libflate", "slog-kvfilter"]
json = ["slog-json"]
[dependencies]
chrono="0.4"
libflate = {version = "1", optional = true}
serde = {version = "1", features = ["derive"]}
slog = "2"
slog-async = "2"
slog-term = "2"
slog-scope = "4"
slog-kvfilter = {version = "~0.7", optional = true}
slog-json = {version = "2.3.0", optional = true}
slog-stdlog = "4"
trackable = "1"
regex="1"
[dev-dependencies]
clap = "2"
log = "0.4"
serdeconv = "0.4"
tempfile = "3"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
once_cell = "1"
[target.'cfg(windows)'.dependencies]
winapi = "~0.3.5"
windows-acl = "~0.3.0"