-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
35 lines (29 loc) · 903 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
34
35
[package]
name = "slog-envlogger"
version = "2.2.0"
authors = ["The Rust Project Developers", "Dawid Ciężarkiewicz <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/slog-envlogger"
homepage = "https://github.com/slog-rs/slog"
repository = "https://github.com/slog-rs/envlogger"
description = """
Port of de facto standard logger implementation for Rust, to `slog-rs` framework.
"""
[lib]
path = "src/lib.rs"
[dependencies]
slog = "2"
regex = { version = "1.2", optional = true }
slog-term = { version = "2", optional = true }
slog-stdlog = { version = "4", optional = true }
slog-scope = { version = "4", optional = true }
log = { version = "0.4", optional = true }
[dev-dependencies]
slog-async = "2"
[[test]]
name = "regexp_filter"
harness = false
[features]
init = ["slog-term", "slog-stdlog", "slog-scope", "log"]
default = ["regex", "init"]