diff --git a/Cargo.toml b/Cargo.toml index c3691d6..9a971ff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,7 +54,7 @@ dirs = "4.0.0" # clippy = "*" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -reqwest = { version = "0.11.12", features = [ "blocking" ]} +reqwest = { version = "0.11.13", features = [ "blocking" ]} glutin = "0.29.0" [target.'cfg(target_arch = "wasm32")'.dependencies] diff --git a/protocol/Cargo.lock b/protocol/Cargo.lock index e667625..4e69379 100644 --- a/protocol/Cargo.lock +++ b/protocol/Cargo.lock @@ -438,9 +438,9 @@ checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836" [[package]] name = "log" -version = "0.4.14" +version = "0.4.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" +checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" dependencies = [ "cfg-if", ] @@ -504,9 +504,9 @@ dependencies = [ [[package]] name = "num-traits" -version = "0.2.14" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" +checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" dependencies = [ "autocfg", ] @@ -674,9 +674,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.11.11" +version = "0.11.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b75aa69a3f06bbcc66ede33af2af253c6f7a86b1ca0033f60c580a27074fbf92" +checksum = "68cc60575865c7831548863cc02356512e3f1dc2f3f82cb837d7fc4cc8f3c97c" dependencies = [ "base64", "bytes", @@ -690,10 +690,10 @@ dependencies = [ "hyper-tls", "ipnet", "js-sys", - "lazy_static", "log", "mime", "native-tls", + "once_cell", "percent-encoding", "pin-project-lite", "serde", @@ -750,15 +750,15 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.140" +version = "1.0.152" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc855a42c7967b7c369eb5860f7164ef1f6f81c20c7cc1141f2a604e18723b03" +checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" [[package]] name = "serde_json" -version = "1.0.82" +version = "1.0.91" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7" +checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883" dependencies = [ "itoa 1.0.2", "ryu", diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index 5b26877..41ae126 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -26,4 +26,4 @@ path = "../std_or_web" version = "0" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -reqwest = { version = "0.11.12", features = [ "blocking" ]} +reqwest = { version = "0.11.13", features = [ "blocking" ]}