thaw/demo/Cargo.toml

25 lines
695 B
TOML
Raw Normal View History

2023-06-13 12:43:15 +08:00
[package]
2023-10-11 21:53:51 +08:00
publish = false
2023-10-11 11:07:57 +08:00
name = "demo"
2023-06-13 12:43:15 +08:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
leptos = { version = "0.5.2", features = ["csr"] }
2023-11-13 16:17:45 +08:00
leptos_meta = { version = "0.5.2", features = ["csr"] }
leptos_router = { version = "0.5.2", features = ["csr"] }
leptos_devtools = "0.0.1"
2023-11-05 16:03:58 +08:00
thaw = { path = "../" }
2023-10-18 23:49:27 +08:00
icondata = { version = "0.1.0", features = [
2023-06-19 23:07:01 +08:00
"AiCloseOutlined",
"AiCheckOutlined",
2023-11-08 11:02:38 +08:00
"AiGithubOutlined",
2023-11-16 20:25:22 +08:00
"AiUserOutlined",
2023-06-19 23:07:01 +08:00
] }
2023-10-24 21:49:36 +08:00
prisms = { git = "https://github.com/luoxiaozero/prisms", rev = "16d4d34b93fc20578ebf03137d54ecc7eafa4d4b" }
2023-09-09 22:22:27 +08:00
[features]
tracing = ["leptos/tracing"]