2023-03-04 14:04:22 +00:00
|
|
|
[package]
|
|
|
|
name = "leptos_hot_reload"
|
|
|
|
version = { workspace = true }
|
|
|
|
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
|
2024-08-12 23:25:47 +00:00
|
|
|
edition.workspace = true
|
2023-03-04 14:04:22 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-08-11 00:01:41 +00:00
|
|
|
anyhow = "1.0"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
syn = { version = "2.0", features = [
|
|
|
|
"full",
|
|
|
|
"parsing",
|
|
|
|
"extra-traits",
|
|
|
|
"visit",
|
|
|
|
"printing",
|
2023-03-04 14:04:22 +00:00
|
|
|
] }
|
2024-08-11 00:01:41 +00:00
|
|
|
quote = "1.0"
|
2024-08-01 12:02:27 +00:00
|
|
|
rstml = "0.12.0"
|
2024-08-11 00:01:41 +00:00
|
|
|
proc-macro2 = { version = "1.0", features = ["span-locations", "nightly"] }
|
|
|
|
parking_lot = "0.12.3"
|
|
|
|
walkdir = "2.5"
|
|
|
|
camino = "1.1"
|
|
|
|
indexmap = "2.3"
|