Skip to content

Commit

Permalink
replace failure with thiserror
Browse files Browse the repository at this point in the history
  • Loading branch information
zyj committed Dec 27, 2023
1 parent bda6b58 commit 28dbf92
Show file tree
Hide file tree
Showing 7 changed files with 67 additions and 119 deletions.
17 changes: 10 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
# 0.3.7

- replace failure with thiserror

# 0.3.5

* update trust dns to hickory dns
- update trust dns to hickory dns

# 0.3.1

* Optimize memory usage
- Optimize memory usage

# 0.2.0

* add response soa record
* fix bugs
- add response soa record
- fix bugs

# 0.1.1

* fix mips build error
- fix mips build error

# 0.1.0

* First version

- First version
73 changes: 11 additions & 62 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yadns"
version = "0.3.5"
version = "0.3.7"
authors = ["zyj"]
edition = "2021"

Expand All @@ -18,7 +18,6 @@ dns-over-https = ["hickory-resolver"]
async-recursion = "1"
async-trait = "0.1"
clap = { version = "4", features = ["derive"] }
failure = "0.1"
futures = { version = "0.3", default-features = false }
hickory-proto = "0.24"
hickory-resolver = { version = "0.24", default-features = false, features = ["tokio-runtime"] }
Expand All @@ -33,6 +32,7 @@ serde_derive = "1"
slog = "2"
slog-async = "2"
slog-term = "2"
thiserror = "1"
tokio = "1"
toml = "0.8"

Expand Down
Loading

0 comments on commit 28dbf92

Please sign in to comment.