From fa3684913c8ac9dc211aa135cd4a956b842fc217 Mon Sep 17 00:00:00 2001 From: Jovansonlee Cesar Date: Wed, 16 Aug 2023 00:07:39 +0800 Subject: update dep --- Cargo.lock | 114 ++++++++++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 91 insertions(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cf331fc..704d03d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -385,23 +385,6 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "json" -version = "0.12.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd" - -[[package]] -name = "jss" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44cc6d2f1f21837c922409774201f420bf3d009705b85dfca3c6e1c5b93a5519" -dependencies = [ - "json", - "once_cell", - "phf", -] - [[package]] name = "libc" version = "0.2.147" @@ -741,6 +724,30 @@ dependencies = [ "bstr", ] +[[package]] +name = "proc-macro-error" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" +dependencies = [ + "proc-macro-error-attr", + "proc-macro2", + "quote", + "syn 1.0.109", + "version_check", +] + +[[package]] +name = "proc-macro-error-attr" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" +dependencies = [ + "proc-macro2", + "quote", + "version_check", +] + [[package]] name = "proc-macro2" version = "1.0.66" @@ -750,6 +757,19 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "proc-macro2-diagnostics" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.27", + "version_check", + "yansi", +] + [[package]] name = "quote" version = "1.0.31" @@ -801,6 +821,20 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5864e7ef1a6b7bcf1d6ca3f655e65e724ed3b52546a0d0a663c991522f552ea" +[[package]] +name = "rstml" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe542870b8f59dd45ad11d382e5339c9a1047cde059be136a7016095bbdefa77" +dependencies = [ + "proc-macro2", + "proc-macro2-diagnostics", + "quote", + "syn 2.0.27", + "syn_derive", + "thiserror", +] + [[package]] name = "rustc-demangle" version = "0.1.23" @@ -837,25 +871,22 @@ dependencies = [ [[package]] name = "sauron" version = "0.59.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88f5a81c3119d0a4ca696c4a00699d3e40f1f6cebb8f6ba24cfa59a4b61787bd" dependencies = [ "sauron-core", + "sauron-macro", ] [[package]] name = "sauron-core" -version = "0.59.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd25a6eae408b33dc4f86c1d01255d5ad64ebb6f0cc4a17a76b02ef7341ea94a" +version = "0.59.2" dependencies = [ "cfg-if", "doc-comment", "js-sys", - "jss", "log", "mt-dom", "once_cell", + "phf", "serde-wasm-bindgen", "thiserror", "wasm-bindgen", @@ -863,6 +894,19 @@ dependencies = [ "web-sys", ] +[[package]] +name = "sauron-macro" +version = "0.59.0" +dependencies = [ + "once_cell", + "phf", + "proc-macro2", + "quote", + "rstml", + "sauron-core", + "syn 2.0.27", +] + [[package]] name = "scopeguard" version = "1.2.0" @@ -1044,6 +1088,18 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "syn_derive" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8128874d02f9a114ade6d9ad252078cb32d3cb240e26477ac73d7e9c495c605e" +dependencies = [ + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.27", +] + [[package]] name = "sync_wrapper" version = "0.1.2" @@ -1189,6 +1245,12 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" +[[package]] +name = "version_check" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" + [[package]] name = "want" version = "0.3.1" @@ -1379,3 +1441,9 @@ name = "windows_x86_64_msvc" version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" + +[[package]] +name = "yansi" +version = "1.0.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1367295b8f788d371ce2dbc842c7b709c73ee1364d30351dd300ec2203b12377" -- cgit v1.2.3