|
@@ -243,6 +243,16 @@ dependencies = [
|
|
"xdg",
|
|
"xdg",
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "console_error_panic_hook"
|
|
|
|
+version = "0.1.6"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "b8d976903543e0c48546a91908f21588a680a8c8f984df9a5d69feccb2b2a211"
|
|
|
|
+dependencies = [
|
|
|
|
+ "cfg-if 0.1.10",
|
|
|
|
+ "wasm-bindgen",
|
|
|
|
+]
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "core-foundation"
|
|
name = "core-foundation"
|
|
version = "0.9.1"
|
|
version = "0.9.1"
|
|
@@ -316,12 +326,6 @@ version = "0.15.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
|
|
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
|
|
|
|
|
|
-[[package]]
|
|
|
|
-name = "dtoa"
|
|
|
|
-version = "0.4.6"
|
|
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
-checksum = "134951f4028bdadb9b84baf4232681efbf277da25144b9b0ad65df75946c422b"
|
|
|
|
-
|
|
|
|
[[package]]
|
|
[[package]]
|
|
name = "encoding_rs"
|
|
name = "encoding_rs"
|
|
version = "0.8.26"
|
|
version = "0.8.26"
|
|
@@ -1227,6 +1231,12 @@ version = "0.1.11"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "c917123afa01924fc84bb20c4c03f004d9c38e5127e3c039bbf7f4b9c76a2f6b"
|
|
checksum = "c917123afa01924fc84bb20c4c03f004d9c38e5127e3c039bbf7f4b9c76a2f6b"
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "pin-project-lite"
|
|
|
|
+version = "0.2.0"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "6b063f57ec186e6140e2b8b6921e5f1bd89c7356dda5b33acc5401203ca6131c"
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "pin-utils"
|
|
name = "pin-utils"
|
|
version = "0.1.0"
|
|
version = "0.1.0"
|
|
@@ -1413,11 +1423,11 @@ dependencies = [
|
|
|
|
|
|
[[package]]
|
|
[[package]]
|
|
name = "reqwest"
|
|
name = "reqwest"
|
|
-version = "0.10.8"
|
|
|
|
|
|
+version = "0.10.9"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "e9eaa17ac5d7b838b7503d118fa16ad88f440498bf9ffe5424e621f93190d61e"
|
|
|
|
|
|
+checksum = "fb15d6255c792356a0f578d8a645c677904dc02e862bebe2ecc18e0c01b9a0ce"
|
|
dependencies = [
|
|
dependencies = [
|
|
- "base64 0.12.3",
|
|
|
|
|
|
+ "base64 0.13.0",
|
|
"bytes",
|
|
"bytes",
|
|
"encoding_rs",
|
|
"encoding_rs",
|
|
"futures-core",
|
|
"futures-core",
|
|
@@ -1434,7 +1444,7 @@ dependencies = [
|
|
"mime_guess",
|
|
"mime_guess",
|
|
"native-tls",
|
|
"native-tls",
|
|
"percent-encoding",
|
|
"percent-encoding",
|
|
- "pin-project-lite",
|
|
|
|
|
|
+ "pin-project-lite 0.2.0",
|
|
"serde",
|
|
"serde",
|
|
"serde_json",
|
|
"serde_json",
|
|
"serde_urlencoded",
|
|
"serde_urlencoded",
|
|
@@ -1443,6 +1453,7 @@ dependencies = [
|
|
"url",
|
|
"url",
|
|
"wasm-bindgen",
|
|
"wasm-bindgen",
|
|
"wasm-bindgen-futures",
|
|
"wasm-bindgen-futures",
|
|
|
|
+ "wasm-bindgen-test",
|
|
"web-sys",
|
|
"web-sys",
|
|
"winreg",
|
|
"winreg",
|
|
]
|
|
]
|
|
@@ -1487,6 +1498,12 @@ dependencies = [
|
|
"winapi 0.3.9",
|
|
"winapi 0.3.9",
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "scoped-tls"
|
|
|
|
+version = "1.0.0"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "scopeguard"
|
|
name = "scopeguard"
|
|
version = "1.1.0"
|
|
version = "1.1.0"
|
|
@@ -1558,14 +1575,14 @@ dependencies = [
|
|
|
|
|
|
[[package]]
|
|
[[package]]
|
|
name = "serde_urlencoded"
|
|
name = "serde_urlencoded"
|
|
-version = "0.6.1"
|
|
|
|
|
|
+version = "0.7.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97"
|
|
|
|
|
|
+checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9"
|
|
dependencies = [
|
|
dependencies = [
|
|
- "dtoa",
|
|
|
|
|
|
+ "form_urlencoded",
|
|
"itoa",
|
|
"itoa",
|
|
|
|
+ "ryu",
|
|
"serde",
|
|
"serde",
|
|
- "url",
|
|
|
|
]
|
|
]
|
|
|
|
|
|
[[package]]
|
|
[[package]]
|
|
@@ -1782,7 +1799,7 @@ dependencies = [
|
|
"mio",
|
|
"mio",
|
|
"mio-uds",
|
|
"mio-uds",
|
|
"num_cpus",
|
|
"num_cpus",
|
|
- "pin-project-lite",
|
|
|
|
|
|
+ "pin-project-lite 0.1.11",
|
|
"slab",
|
|
"slab",
|
|
"tokio-macros",
|
|
"tokio-macros",
|
|
]
|
|
]
|
|
@@ -1813,7 +1830,7 @@ dependencies = [
|
|
"parking_lot",
|
|
"parking_lot",
|
|
"percent-encoding",
|
|
"percent-encoding",
|
|
"phf",
|
|
"phf",
|
|
- "pin-project-lite",
|
|
|
|
|
|
+ "pin-project-lite 0.1.11",
|
|
"postgres-protocol",
|
|
"postgres-protocol",
|
|
"postgres-types",
|
|
"postgres-types",
|
|
"tokio",
|
|
"tokio",
|
|
@@ -1840,7 +1857,7 @@ dependencies = [
|
|
"futures-core",
|
|
"futures-core",
|
|
"futures-sink",
|
|
"futures-sink",
|
|
"log",
|
|
"log",
|
|
- "pin-project-lite",
|
|
|
|
|
|
+ "pin-project-lite 0.1.11",
|
|
"tokio",
|
|
"tokio",
|
|
]
|
|
]
|
|
|
|
|
|
@@ -1867,7 +1884,7 @@ checksum = "b0987850db3733619253fe60e17cb59b82d37c7e6c0236bb81e4d6b87c879f27"
|
|
dependencies = [
|
|
dependencies = [
|
|
"cfg-if 0.1.10",
|
|
"cfg-if 0.1.10",
|
|
"log",
|
|
"log",
|
|
- "pin-project-lite",
|
|
|
|
|
|
+ "pin-project-lite 0.1.11",
|
|
"tracing-core",
|
|
"tracing-core",
|
|
]
|
|
]
|
|
|
|
|
|
@@ -2152,6 +2169,30 @@ version = "0.2.68"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "1d649a3145108d7d3fbcde896a468d1bd636791823c9921135218ad89be08307"
|
|
checksum = "1d649a3145108d7d3fbcde896a468d1bd636791823c9921135218ad89be08307"
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "wasm-bindgen-test"
|
|
|
|
+version = "0.3.18"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "34d1cdc8b98a557f24733d50a1199c4b0635e465eecba9c45b214544da197f64"
|
|
|
|
+dependencies = [
|
|
|
|
+ "console_error_panic_hook",
|
|
|
|
+ "js-sys",
|
|
|
|
+ "scoped-tls",
|
|
|
|
+ "wasm-bindgen",
|
|
|
|
+ "wasm-bindgen-futures",
|
|
|
|
+ "wasm-bindgen-test-macro",
|
|
|
|
+]
|
|
|
|
+
|
|
|
|
+[[package]]
|
|
|
|
+name = "wasm-bindgen-test-macro"
|
|
|
|
+version = "0.3.18"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "e8fb9c67be7439ee8ab1b7db502a49c05e51e2835b66796c705134d9b8e1a585"
|
|
|
|
+dependencies = [
|
|
|
|
+ "proc-macro2",
|
|
|
|
+ "quote",
|
|
|
|
+]
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "web-sys"
|
|
name = "web-sys"
|
|
version = "0.3.45"
|
|
version = "0.3.45"
|