16 lines
332 B
TOML
16 lines
332 B
TOML
[package]
|
|
name = "ctci"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
tracing-core = "0.1" # pin to a single version
|
|
thiserror = "2.0.18"
|
|
eyre = "0.6.12"
|
|
color-eyre = "0.6.5"
|
|
tracing-error = "0.2.1"
|
|
|
|
[dev-dependencies]
|
|
tracing-test = "0.2.6"
|