Skip to content

Commit

Permalink
Implement custom resolver
Browse files Browse the repository at this point in the history
  • Loading branch information
dani-garcia committed Oct 20, 2023
1 parent ff8db4f commit dd5585d
Show file tree
Hide file tree
Showing 5 changed files with 360 additions and 263 deletions.
99 changes: 50 additions & 49 deletions Cargo.lock

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

6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ dashmap = "5.5.3"

# Async futures
futures = "0.3.28"
tokio = { version = "1.32.0", features = ["rt-multi-thread", "fs", "io-util", "parking_lot", "time", "signal"] }
tokio = { version = "1.32.0", features = ["rt-multi-thread", "fs", "io-util", "parking_lot", "time", "signal", "net"] }

# A generic serialization/deserialization framework
serde = { version = "1.0.188", features = ["derive"] }
Expand Down Expand Up @@ -124,7 +124,9 @@ email_address = "0.2.4"
handlebars = { version = "4.3.7", features = ["dir_source"] }

# HTTP client (Used for favicons, version check, DUO and HIBP API)
reqwest = { version = "0.11.20", features = ["stream", "json", "deflate", "gzip", "brotli", "socks", "cookies", "trust-dns", "native-tls-alpn"] }
reqwest = { version = "0.11.20", features = ["stream", "json", "deflate", "gzip", "brotli", "socks", "cookies", "native-tls-alpn"] }
hyper = { version = "0.14.27", default-features = false }
hickory-resolver = "0.24.0"

# Favicon extraction libraries
html5gum = "0.5.7"
Expand Down
Loading

0 comments on commit dd5585d

Please sign in to comment.