Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: switch error handling from color-eyre to miette/thiserror #67

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat: switch error handling from color-eyre to miette/thiserror [WIP]
  • Loading branch information
uncenter committed Feb 28, 2025
commit 89849487e8ae07df5cee0e551e35c40b6d4e8465
204 changes: 119 additions & 85 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ path = "src/main.rs"
[dependencies]
catppuccin = { version = "2.4.0", features = ["css-colors"] }
clap = { version = "4.5.26", features = ["derive", "env"] }
color-eyre = "0.6.3"
convert_case = "0.6.0"
css-colors = "1.0.1"
csscolorparser = { version = "0.6.2", features = ["rgb"] }
Expand All @@ -28,6 +27,7 @@ flate2 = "1.0.35"
graphql_client = { version = "0.14.0", features = ["reqwest-blocking"] }
inquire = "0.7.5"
log = "0.4.25"
miette = { version = "7.4.0", features = ["fancy"] }
pretty_env_logger = "0.5.0"
reqwest = { version = "0.11.27", features = ["blocking"] }
serde = { version = "1.0.217", features = ["derive"] }
Expand All @@ -36,6 +36,7 @@ serde_yaml = "0.9.34"
strsim = "0.11.1"
strum = { version = "0.26.3", features = ["derive"] }
tar = "0.4.43"
thiserror = "2.0.11"
url = "2.5.4"

[profile.release]
Expand Down
Loading
Loading