-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (38 loc) · 1.06 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
[package]
name = "call_logger"
version = "0.6.0"
edition = "2021"
authors = ["Alec Brown <[email protected]>"]
description = "A logger that calls another application for every logged item"
rust-version = "1.71"
license = "Apache-2.0"
repository = "https://github.com/a1ecbr0wn/call_logger"
homepage = "https://github.com/a1ecbr0wn/call_logger"
documentation = "https://docs.rs/call_logger"
readme = "README.md"
categories = ["development-tools::debugging"]
keywords = ["logging"]
[features]
default = ["timestamps"]
timestamps = ["chrono"]
minimal = []
[dependencies]
log = { version = "^0.4.22", features = ["std", "kv"] }
chrono = { version = "^0.4.39", features = ["clock"], optional = true }
ureq = "3.0.5"
[dev-dependencies]
multi_log = "^0.1.2"
mockito = "^1.6.1"
fern = "^0.7"
[[example]]
name = "log_to_discord_script"
required-features = ["timestamps"]
[[example]]
name = "log_to_discord_url"
required-features = ["timestamps"]
[[example]]
name = "log_filtering"
required-features = ["timestamps"]
[[example]]
name = "log_with_fern"
required-features = ["timestamps"]