From 63e2395caf4ae93ebde96d97e12fc946af1e9ac9 Mon Sep 17 00:00:00 2001 From: Ashelyn Rose Date: Sat, 22 Mar 2025 14:51:36 -0600 Subject: Component styles and hot-reloading --- Cargo.lock | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 53 insertions(+), 2 deletions(-) (limited to 'Cargo.lock') diff --git a/Cargo.lock b/Cargo.lock index ed903de..b441a79 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -245,7 +245,7 @@ dependencies = [ "pathdiff", "serde", "toml", - "winnow", + "winnow 0.7.4", ] [[package]] @@ -1801,6 +1801,12 @@ dependencies = [ "libc", ] +[[package]] +name = "siphasher" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" + [[package]] name = "slab" version = "0.4.9" @@ -1857,10 +1863,46 @@ dependencies = [ "leptos_axum", "leptos_meta", "leptos_router", + "stylance", "tokio", "wasm-bindgen", ] +[[package]] +name = "stylance" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcda08e77bb732a73a207ce4f080670ff5f6933a7dd4c567cf5c038e2c950dfb" +dependencies = [ + "stylance-macros", +] + +[[package]] +name = "stylance-core" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0cb8a158cacd104c770228a25173facdcf85f26c97730660ad62a905c4fc6f0" +dependencies = [ + "anyhow", + "serde", + "siphasher", + "toml", + "winnow 0.5.40", +] + +[[package]] +name = "stylance-macros" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0024020d03c9ea479ffbc7d4b85863648b9ffc8151b59d6bd6cdcf0dec27bf42" +dependencies = [ + "anyhow", + "proc-macro2", + "quote", + "stylance-core", + "syn", +] + [[package]] name = "syn" version = "2.0.100" @@ -2066,7 +2108,7 @@ dependencies = [ "serde", "serde_spanned", "toml_datetime", - "winnow", + "winnow 0.7.4", ] [[package]] @@ -2440,6 +2482,15 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" +[[package]] +name = "winnow" +version = "0.5.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" +dependencies = [ + "memchr", +] + [[package]] name = "winnow" version = "0.7.4" -- cgit 1.4.1