-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (40 loc) · 1.09 KB
/
Cargo.toml
File metadata and controls
43 lines (40 loc) · 1.09 KB
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
[package]
name = "tincre-logger"
version = "0.1.1"
edition = "2021"
authors = [
"Jason R. Stevens, CFA <jason@thinkjrs.dev>",
"Tincre <hi@tincre.com>",
]
license = "MIT"
description = "A simple, 'zero-setup' logging library for Rust that works out-of-the-box with a familiar API. Powered by tracing."
repository = "https://github.com/Tincre/tincre-logger"
homepage = "https://github.com/Tincre/tincre-logger"
documentation = "https://docs.rs/tincre-logger"
readme = "README.md"
keywords = ["log", "logging", "logger", "tracing", "console"]
categories = [
"command-line-utilities",
"development-tools",
"development-tools::debugging",
]
exclude = [
".github",
".gitignore",
"tests/",
"examples/",
".vscode/",
".idea/",
".github",
]
[dependencies]
chrono = "0.4.41"
serde_json = "1.0.141"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
[dev-dependencies]
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
assert_cmd = "2.0"
predicates = "3.1"
[lints.rust]
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(coverage)'] }