From df6622e940c30f085039aa84d01dda1dc9ef8c5f Mon Sep 17 00:00:00 2001 From: Sam Denty Date: Fri, 29 Jan 2021 12:28:37 +0000 Subject: [PATCH] update cargo.toml --- Cargo.toml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 230b589..4994ec0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,9 @@ name = "site_icons" version = "0.1.0" authors = ["Sam Denty "] 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] wasm-opt = ["-Oz", "--enable-mutable-globals"] @@ -22,14 +25,14 @@ regex = "1" log = "0.4.14" once_cell = "1.5.2" 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" 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_json = "1.0" -reqwest = { git = "https://github.com/samdenty/reqwest", features = ["json", "cookies", "blocking", "stream"] } -futures = "0.3.8" +reqwest = { git = "https://github.com/samdenty/reqwest", version = "0.11.0", features = ["json", "cookies", "blocking", "stream"] } +futures = "0.3.12" wee_alloc = { version = "0.4.2", optional = true } [target.'cfg(not(target_arch = "wasm32"))'.dependencies]