-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (18 loc) · 797 Bytes
/
Cargo.toml
File metadata and controls
22 lines (18 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "lyte-observer"
version = "1.0.1"
edition = "2024"
description = "A thin wrapper around my most commonly-used crates for error handling and reporting, tracing, observability, logs, etc."
license = "MIT"
repository = "https://github.com/lytedev/observer"
[dependencies]
# color-eyre is my go-to for generic error handling in a nice way
# it is a thin wrapper itself around the `anyhow` crate
color-eyre = { version = "0.6.3", default-features = false }
# tracing is my all-purpose log-with-metadata and annotate everything crate
tracing = { version = "0.1.41", default-features = false, features = [
"attributes",
"log",
] }
# tracing-subscriber is for taking traces and spitting them to stdout nicely
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }