Skip to content

Commit 5728467

Browse files
committed
feat: remove anyhow dependency
1 parent 944444d commit 5728467

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ tracing = "0.1.40"
2727
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
2828
data-encoding = "2.9.0"
2929
n0-snafu = "0.2.2"
30-
anyhow = "1.0.100"
3130

3231
[dev-dependencies]
3332
duct = "0.13.6"

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ pub enum RelayModeOption {
166166
}
167167

168168
impl FromStr for RelayModeOption {
169-
type Err = anyhow::Error;
169+
type Err = iroh::RelayUrlParseError;
170170

171171
fn from_str(s: &str) -> Result<Self, Self::Err> {
172172
match s {

0 commit comments

Comments
 (0)