diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-01-25 20:44:40 +0100 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-01-25 20:44:40 +0100 |
| commit | 42cb2a63a8143c3557b9304c3eed6973acbc7405 (patch) | |
| tree | af43e088da415bc7768898dc57f7972389ec04cd /pkgs/by-name/mp/mpdpopm/Cargo.toml | |
| parent | modules/river/keymap: Make media good/bad ratings once mappings (diff) | |
| download | nixos-config-42cb2a63a8143c3557b9304c3eed6973acbc7405.zip | |
pkgs/mpdpopm: Switch error handling from snafu to anyhow
This is not a library, as such we can just use anyhow and provide better and more concise errors to the user.
Diffstat (limited to '')
| -rw-r--r-- | pkgs/by-name/mp/mpdpopm/Cargo.toml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/by-name/mp/mpdpopm/Cargo.toml b/pkgs/by-name/mp/mpdpopm/Cargo.toml index ccadfabb..c82537e6 100644 --- a/pkgs/by-name/mp/mpdpopm/Cargo.toml +++ b/pkgs/by-name/mp/mpdpopm/Cargo.toml @@ -25,7 +25,6 @@ lalrpop = { version = "0.22", features = ["lexer"] } [dependencies] async-trait = "0.1" -backtrace = "0.3" boolinator = "2.4" chrono = "0.4" clap = {version = "4.5", features = ["derive"]} @@ -38,8 +37,8 @@ pin-project = "1.1" regex = "1.12" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.149" -snafu = { version = "0.8.9", features = ["backtrace"] } toml = "0.9" tokio = { version = "1.49", features = ["io-util", "macros", "net", "process", "rt-multi-thread", "signal", "sync", "time"] } tracing = "0.1.44" tracing-subscriber = { version = "0.3.22", features = ["env-filter"]} +anyhow = "1.0.100" |
