update cargo.toml

This commit is contained in:
Sam Denty 2021-01-29 12:28:37 +00:00
parent c66d1cd9b2
commit df6622e940
No known key found for this signature in database
GPG key ID: F3E9308D4A43BC0E

View file

@ -3,6 +3,9 @@ name = "site_icons"
version = "0.1.0" version = "0.1.0"
authors = ["Sam Denty <sam@samdenty.com>"] authors = ["Sam Denty <sam@samdenty.com>"]
edition = "2018" edition = "2018"
license = "gpl-3.0"
repository = "https://github.com/samdenty/site_icons"
description = "Website icon scraper with sizes, ordering, and WASM support"
[package.metadata.wasm-pack.profile.release] [package.metadata.wasm-pack.profile.release]
wasm-opt = ["-Oz", "--enable-mutable-globals"] wasm-opt = ["-Oz", "--enable-mutable-globals"]
@ -22,14 +25,14 @@ regex = "1"
log = "0.4.14" log = "0.4.14"
once_cell = "1.5.2" once_cell = "1.5.2"
scraper = "0.12.0" scraper = "0.12.0"
tokio-byteorder = { git = "https://github.com/samdenty/tokio-byteorder", features = ["futures"] } tokio-byteorder = { git = "https://github.com/samdenty/tokio-byteorder", version = "0.2.0", features = ["futures"] }
byteorder = "1.4.2" byteorder = "1.4.2"
data-url = "0.1.0" data-url = "0.1.0"
mime = { git = "https://github.com/hyperium/mime" } mime = { git = "https://github.com/hyperium/mime", version = "0.4.0-a.0" }
serde = { version = "1.0", features = ["derive", "rc"] } serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0" serde_json = "1.0"
reqwest = { git = "https://github.com/samdenty/reqwest", features = ["json", "cookies", "blocking", "stream"] } reqwest = { git = "https://github.com/samdenty/reqwest", version = "0.11.0", features = ["json", "cookies", "blocking", "stream"] }
futures = "0.3.8" futures = "0.3.12"
wee_alloc = { version = "0.4.2", optional = true } wee_alloc = { version = "0.4.2", optional = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] [target.'cfg(not(target_arch = "wasm32"))'.dependencies]