add logging crate to reduce unnecessary stdout spam
This commit is contained in:
parent
3023576fec
commit
1e5d328ab4
4 changed files with 22 additions and 2 deletions
|
|
@ -3,11 +3,17 @@ name = "entomologist"
|
|||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
log = ["dep:log", "dep:simple_logger"]
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.95"
|
||||
clap = { version = "4.5.26", features = ["derive"] }
|
||||
log = { version = "0.4.27", optional = true }
|
||||
rand = "0.9.1"
|
||||
serde = { version = "1.0.217", features = ["derive"] }
|
||||
simple_logger = { version = "5.0.0", optional = true }
|
||||
tempfile = "3.20.0"
|
||||
thiserror = "2.0.11"
|
||||
toml = "0.8.19"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue