Skip to content

Commit

Permalink
Depend on eyre instead of color-eyre
Browse files Browse the repository at this point in the history
  • Loading branch information
TheButlah committed May 13, 2024
1 parent 8c96222 commit 2d21fd3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion security-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ rust-version.workspace = true
reqwest = ["dep:reqwest"]

[dependencies]
color-eyre = "0.6"
eyre = "0.6"
hex-literal = "0.4.1"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls-manual-roots"], optional = true }
ring = "0.17.0"
5 changes: 1 addition & 4 deletions security-utils/src/reqwest.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
use std::sync::OnceLock;

use color_eyre::{
eyre::{ensure, WrapErr},
Result,
};
use eyre::{ensure, Result, WrapErr};
use hex_literal::hex;
use reqwest::{Certificate, Client, ClientBuilder};

Expand Down

0 comments on commit 2d21fd3

Please sign in to comment.