leptos/leptos_hot_reload/Cargo.toml
Lucas Åström ce4fe632a2 Destructuring let (0.7) (#2655)
* Use `let()` syntax for bindings

This lets users use destructuring when binding more complex values, and we also get better IDE support.

* Update rstml
2024-08-01 19:42:50 -04:00

28 lines
679 B
TOML

[package]
name = "leptos_hot_reload"
version = { workspace = true }
edition = "2021"
authors = ["Greg Johnston"]
license = "MIT"
repository = "https://github.com/leptos-rs/leptos"
description = "Utility types used for dev mode and hot-reloading for the Leptos web framework."
readme = "../README.md"
rust-version.workspace = true
[dependencies]
anyhow = "1"
serde = { version = "1", features = ["derive"] }
syn = { version = "2", features = [
"full",
"parsing",
"extra-traits",
"visit",
"printing",
] }
quote = "1"
rstml = "0.11.2"
proc-macro2 = { version = "1", features = ["span-locations", "nightly"] }
parking_lot = "0.12"
walkdir = "2"
camino = "1.1.3"
indexmap = "2"