This repository has been archived on 2025-01-30. You can view files and clone it, but cannot push or open issues or pull requests.
site_icons/Cargo.toml

49 lines
1.4 KiB
TOML
Raw Normal View History

2021-01-29 12:23:15 +00:00
[package]
name = "site_icons"
2022-05-06 21:35:55 +01:00
version = "0.1.11"
2021-01-29 12:23:15 +00:00
authors = ["Sam Denty <sam@samdenty.com>"]
edition = "2018"
2021-01-30 18:03:06 +00:00
license = "GPL-3.0"
2021-01-29 16:26:04 +00:00
homepage = "https://github.com/samdenty/site_icons"
2021-01-29 12:28:37 +00:00
repository = "https://github.com/samdenty/site_icons"
2021-01-29 16:26:04 +00:00
documentation = "https://docs.rs/site_icons"
description = "Website icon scraper that fetches sizes (with WASM support)"
2021-01-29 16:29:31 +00:00
keywords = ["favicon", "logo", "website", "scraper", "cli"]
2021-01-29 16:26:04 +00:00
categories = ["command-line-utilities", "multimedia::images", "wasm"]
2021-01-29 12:23:15 +00:00
[package.metadata.wasm-pack.profile.release]
wasm-opt = ["-Oz", "--enable-mutable-globals"]
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
2022-04-01 02:16:56 +01:00
clap = { version = "3.1.7", features = ["derive"] }
2021-02-03 21:13:43 +00:00
vec1 = { version = "1.6.0", features = ["serde"] }
2021-01-29 12:23:15 +00:00
itertools = "0.10.0"
2021-02-02 15:58:02 +00:00
serde_with = "1.6.2"
2021-01-29 12:23:15 +00:00
html5ever = "0.25.1"
2021-01-29 16:26:04 +00:00
percent-encoding = "2.1.0"
2021-01-29 12:23:15 +00:00
url = { version = "2.2.0", features = ["serde"] }
regex = "1"
log = "0.4.14"
once_cell = "1.5.2"
scraper = "0.12.0"
2021-01-29 12:55:25 +00:00
tokio-futures-byteorder = { version = "0.2.0", features = ["futures"] }
2021-01-29 12:23:15 +00:00
byteorder = "1.4.2"
data-url = "0.1.0"
2021-01-29 16:26:04 +00:00
mime = { package = "mime_4", version = "0.4.0-a.0" }
2021-01-29 12:23:15 +00:00
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
2022-04-01 02:10:07 +01:00
reqwest = { package = "reqwest-wasm", version = "0.11.0", features = [
"json",
"cookies",
"blocking",
"stream",
] }
2021-01-29 12:28:37 +00:00
futures = "0.3.12"
2021-01-29 12:23:15 +00:00
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
2021-02-02 15:58:02 +00:00
tokio = { version = "1.1.1", features = ["full"] }
2022-04-02 22:14:16 +01:00
env_logger = "0.9.0"