diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 55 |
1 files changed, 53 insertions, 2 deletions
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]] @@ -1802,6 +1802,12 @@ dependencies = [ ] [[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" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1857,11 +1863,47 @@ 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" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2066,7 +2108,7 @@ dependencies = [ "serde", "serde_spanned", "toml_datetime", - "winnow", + "winnow 0.7.4", ] [[package]] @@ -2442,6 +2484,15 @@ 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" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0e97b544156e9bebe1a0ffbc03484fc1ffe3100cbce3ffb17eac35f7cdd7ab36" |