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

40 lines
1.2 KiB
TOML
Raw Normal View History

2021-01-29 12:23:15 +00:00
[package]
name = "site_icons"
version = "0.1.0"
authors = ["Sam Denty <sam@samdenty.com>"]
edition = "2018"
2021-01-29 12:28:37 +00:00
license = "gpl-3.0"
repository = "https://github.com/samdenty/site_icons"
description = "Website icon scraper with sizes, ordering, and WASM support"
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]
clap = "3.0.0-beta.2"
itertools = "0.10.0"
serde_with = "1.6.1"
pin-utils = "0.1.0"
html5ever = "0.25.1"
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:28:37 +00:00
tokio-byteorder = { git = "https://github.com/samdenty/tokio-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 12:28:37 +00:00
mime = { git = "https://github.com/hyperium/mime", 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"
2021-01-29 12:28:37 +00:00
reqwest = { git = "https://github.com/samdenty/reqwest", version = "0.11.0", features = ["json", "cookies", "blocking", "stream"] }
futures = "0.3.12"
2021-01-29 12:23:15 +00:00
wee_alloc = { version = "0.4.2", optional = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { version = "1.1.0", features = ["full"] }