2023-03-04 14:04:22 +00:00
|
|
|
[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"
|
2024-02-28 12:19:09 +00:00
|
|
|
rust-version.workspace = true
|
2023-03-04 14:04:22 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
2023-05-21 10:45:53 +00:00
|
|
|
syn = { version = "2", features = [
|
2023-03-04 14:04:22 +00:00
|
|
|
"full",
|
|
|
|
"parsing",
|
|
|
|
"extra-traits",
|
|
|
|
"visit",
|
|
|
|
"printing",
|
|
|
|
] }
|
|
|
|
quote = "1"
|
2024-06-29 20:15:39 +00:00
|
|
|
rstml = "0.11.2"
|
2023-03-04 14:04:22 +00:00
|
|
|
proc-macro2 = { version = "1", features = ["span-locations", "nightly"] }
|
|
|
|
parking_lot = "0.12"
|
|
|
|
walkdir = "2"
|
|
|
|
camino = "1.1.3"
|
2023-07-11 19:24:21 +00:00
|
|
|
indexmap = "2"
|