Update deps: log, reqwest, serde_json, flate2, structopt...

Closes #372 bump log from 0.4.8 to 0.4.11
Closes #387 bump reqwest from 0.10.6 to 0.10.8
Closes #391 bump wasm-bindgen from 0.2.64 to 0.2.68
Closes #403 bump serde_json from 1.0.56 to 1.0.58
Closes #405 bump flate2 from 1.0.16 to 1.0.18
Closes #409 bump structopt from 0.3.15 to 0.3.19
This commit is contained in:
ice_iix 2020-10-10 12:04:21 -07:00
parent 85c1014f86
commit d9399015cd
3 changed files with 511 additions and 536 deletions

1027
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -19,28 +19,28 @@ opt-level = 1
[dependencies]
cfg-if = "0.1.9"
wasm-bindgen = "0.2.64"
wasm-bindgen = "0.2.68"
glutin = "0.22.0"
byteorder = "1.3.4"
serde = "1.0.114"
serde = "1.0.116"
serde_json = "1.0.56"
flate2 = { version = "1.0.16", features = ["rust_backend"], default-features = false }
flate2 = { version = "1.0.18", features = ["rust_backend"], default-features = false }
zip = { version = "0.5.6", features = ["deflate"], default-features = false }
image = "0.23.6"
rand = "0.7.3"
rand_pcg = "0.2.1"
base64 = "0.12.3"
log = { version = "0.4.8", features = ["std"] }
log = { version = "0.4.11", features = ["std"] }
cgmath = "0.17.0"
lazy_static = "1.4.0"
collision = "0.20.1"
rsa_public_encrypt_pkcs1 = "0.2.0"
structopt = "0.3.15"
structopt = "0.3.19"
clipboard = "0.5.0"
# clippy = "*"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
reqwest = { version = "0.10.6", features = [ "blocking" ]}
reqwest = { version = "0.10.8", features = [ "blocking" ]}
[target.'cfg(target_arch = "wasm32")'.dependencies]
stdweb = "0.4.20"

View File

@ -5,15 +5,15 @@ authors = [ "Thinkofdeath <thinkofdeath@spigotmc.org>", "iceiix <ice_ix@protonma
edition = "2018"
[dependencies]
serde = "1.0.114"
serde = "1.0.116"
serde_json = "1.0.56"
hex = "0.4.2"
sha-1 = "0.9.1"
aes = "0.4.0"
cfb8 = "0.4.0"
byteorder = "1.3.4"
log = { version = "0.4.8", features = ["std"] }
flate2 = { version = "1.0.16", features = ["rust_backend"], default-features = false }
log = { version = "0.4.11", features = ["std"] }
flate2 = { version = "1.0.18", features = ["rust_backend"], default-features = false }
num-traits = "0.2.12"
[dependencies.steven_shared]
@ -25,4 +25,4 @@ path = "../std_or_web"
version = "0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
reqwest = { version = "0.10.6", features = [ "blocking" ]}
reqwest = { version = "0.10.8", features = [ "blocking" ]}