update clap
This commit is contained in:
parent
2bbba82448
commit
ec3dd499ce
1 changed files with 8 additions and 3 deletions
11
Cargo.toml
11
Cargo.toml
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "site_icons"
|
||||
version = "0.1.6"
|
||||
version = "0.1.7"
|
||||
authors = ["Sam Denty <sam@samdenty.com>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
|
@ -18,7 +18,7 @@ wasm-opt = ["-Oz", "--enable-mutable-globals"]
|
|||
crate-type = ["cdylib", "rlib"]
|
||||
|
||||
[dependencies]
|
||||
clap = "3.0.0-beta.2"
|
||||
clap = "3.1.7"
|
||||
vec1 = { version = "1.6.0", features = ["serde"] }
|
||||
itertools = "0.10.0"
|
||||
serde_with = "1.6.2"
|
||||
|
@ -35,7 +35,12 @@ data-url = "0.1.0"
|
|||
mime = { package = "mime_4", version = "0.4.0-a.0" }
|
||||
serde = { version = "1.0", features = ["derive", "rc"] }
|
||||
serde_json = "1.0"
|
||||
reqwest = { package = "reqwest-wasm", version = "0.11.0", features = ["json", "cookies", "blocking", "stream"] }
|
||||
reqwest = { package = "reqwest-wasm", version = "0.11.0", features = [
|
||||
"json",
|
||||
"cookies",
|
||||
"blocking",
|
||||
"stream",
|
||||
] }
|
||||
futures = "0.3.12"
|
||||
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||
|
|
Reference in a new issue