Update deps: cfg-if, serde/_json, structopt...

Bump cfg-if to 1.0.0 (closes #412)
Bump serde to 1.0.117 (closes #416)
Bump serde_json to 1.0.59 (closes #413)
Bump structopt to 0.3.20 (closes #414)
Bump flate2 to 1.0.19 (closes #420)
Bump reqwest to 0.10.9 (closes #423)
This commit is contained in:
ice_iix 2020-11-24 11:47:41 -08:00
parent 4a757656ab
commit da137ca9b4
4 changed files with 1185 additions and 1078 deletions

2241
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -18,13 +18,13 @@ path = "src/main.rs"
opt-level = 1 opt-level = 1
[dependencies] [dependencies]
cfg-if = "0.1.9" cfg-if = "1.0.0"
wasm-bindgen = "0.2.68" wasm-bindgen = "0.2.68"
glutin = "0.22.0" glutin = "0.22.0"
byteorder = "1.3.4" byteorder = "1.3.4"
serde = "1.0.116" serde = "1.0.117"
serde_json = "1.0.56" serde_json = "1.0.59"
flate2 = { version = "1.0.18", features = ["rust_backend"], default-features = false } flate2 = { version = "1.0.19", features = ["rust_backend"], default-features = false }
zip = { version = "0.5.6", features = ["deflate"], default-features = false } zip = { version = "0.5.6", features = ["deflate"], default-features = false }
image = "0.23.10" image = "0.23.10"
rand = "0.7.3" rand = "0.7.3"
@ -35,12 +35,12 @@ cgmath = "0.17.0"
lazy_static = "1.4.0" lazy_static = "1.4.0"
collision = "0.20.1" collision = "0.20.1"
rsa_public_encrypt_pkcs1 = "0.2.0" rsa_public_encrypt_pkcs1 = "0.2.0"
structopt = "0.3.19" structopt = "0.3.20"
clipboard = "0.5.0" clipboard = "0.5.0"
# clippy = "*" # clippy = "*"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
reqwest = { version = "0.10.8", features = [ "blocking" ]} reqwest = { version = "0.10.9", features = [ "blocking" ]}
[target.'cfg(target_arch = "wasm32")'.dependencies] [target.'cfg(target_arch = "wasm32")'.dependencies]
stdweb = "0.4.20" stdweb = "0.4.20"

View File

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

View File

@ -5,7 +5,7 @@ authors = [ "iceiix <ice_ix@protonmail.ch>" ]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
cfg-if = "0.1.10" cfg-if = "1.0.0"
[target.'cfg(target_arch = "wasm32")'.dependencies] [target.'cfg(target_arch = "wasm32")'.dependencies]
localstoragefs = "0.1.0" localstoragefs = "0.1.0"