-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (39 loc) · 886 Bytes
/
Cargo.toml
File metadata and controls
50 lines (39 loc) · 886 Bytes
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
47
48
49
50
[package]
name = "mod_logger"
version = "0.8.4"
authors = ["Thomas Runte <thomas@etnur.net>"]
edition = "2021"
description = "A consumer for the log crate that allows module-wise configuration."
readme = "README.md"
repository = "https://github.com/samothx/ModuleLogger"
license = "MIT OR Apache-2.0"
keywords = ["Logging"]
categories = ["development-tools::debugging"]
[features]
# default = ["config"]
config = ["serde","serde_yaml"]
[lib]
path = "src/lib.rs"
publish = true
[[bin]]
name = "test"
path = "src/test.rs"
[dependencies]
[dependencies.colored]
version = "1.9"
[dependencies.chrono]
version = "0.4"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dependencies.serde_yaml]
version = "0.8"
optional = true
[dependencies.log]
version = "0.4"
features = ["std"]
[dependencies.cfg-if]
version = "0.1.10"