summaryrefslogtreecommitdiffstats
path: root/src/utils/error.rs
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2021-07-12 22:43:36 -0400
committerGitHub <noreply@github.com>2021-07-12 22:43:36 -0400
commit54ccbb984efa86eb4cd876349f2a512eb4da2d9a (patch)
treebb7e97a9499da6fecc2ce6f307133c4d3742c502 /src/utils/error.rs
parent01554758a03a2a28e19bcc878f96375a0b44ece1 (diff)
parent70242bc2b2de5e1092f0e2c3ee978e1040d3e4e5 (diff)
Merge pull request #539 from ClementTsang/remove_beef
Small refactor to remove the beef dependency for now. This is likely just a tempoary change, I wanted to remove it just for clarity's sake among dependencies, and will probably add it back in the future. For now I'll just stick to std's beef.
Diffstat (limited to 'src/utils/error.rs')
-rw-r--r--src/utils/error.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/utils/error.rs b/src/utils/error.rs
index 8f8da789..e265ad3e 100644
--- a/src/utils/error.rs
+++ b/src/utils/error.rs
@@ -1,5 +1,4 @@
-use beef::Cow;
-use std::result;
+use std::{borrow::Cow, result};
use thiserror::Error;
#[cfg(target_os = "linux")]