Authenticator/favicon-scrapper/Cargo.toml
Bilal Elmoussaoui 3f3c47595a favicons: Split into a separate crate
This also stops fetching icons for a specific size and instead fetches the best size there is
that fixes the runtime stack error

Fixes #312
2022-04-22 00:33:19 +02:00

19 lines
444 B
TOML

[package]
name = "favicon-scrapper"
version = "0.1.0"
edition = "2021"
autotests = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = "0.11"
percent-encoding = "2.1"
quick-xml = "0.22"
image = {version = "0.24", features = ["ico", "png"], default-features = false}
url = "2.2"
once_cell = "1.9"
log = "0.4"
base64 = "0.13.0"
svg_metadata = "0.4"
async-std = "1.11"