forked from Drakulix/simplelog.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (28 loc) · 794 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 = "simplelog"
version = "0.11.2"
edition = "2018"
authors = ["Drakulix <[email protected]>"]
description = "A simple and easy-to-use logging facility for Rust's log crate"
documentation = "https://docs.rs/simplelog/"
repository = "https://github.com/drakulix/simplelog.rs"
readme = "README.md"
keywords = ["log", "simplelog", "filelog", "logging"]
license = "MIT OR Apache-2.0"
include = [
"**/*.rs",
"Cargo.toml",
"CHANGELOG.md",
"README.md",
"LICENSE.APACHE2",
"LICENSE.MIT",
]
[features]
test = []
default = ["termcolor"]
[dependencies]
log = { version = "0.4.*", features = ["std"] }
termcolor = { version = "1.1.*", optional = true }
paris = { version = "~1.5", optional = true }
ansi_term = { version = "0.12", optional = true }
chrono = "0.4.1"