blogsite/blog/Cargo.toml

30 lines
755 B
TOML

[package]
name = "blog"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
web-sys = { version = "0.3", features = [
"HtmlTableCellElement",
"Event",
"EventTarget",
"HtmlImageElement",
"HtmlDivElement",
] }
log = "0.4"
rand = { version = "0.8", features = ["small_rng"] }
yew = { version = "0.21", features = ["csr"] }
yew-router = "0.18.0"
serde = { version = "1.0", features = ["derive"] }
gloo = "0.11"
wasm-logger = "0.2"
instant = { version = "0.1", features = ["wasm-bindgen"] }
once_cell = "1"
chrono = "0.4.40"
blog-macros = { path = "../blog-macros" }
scratchpad = { path = "../scratchpad" }
futures = "0.3.31"
wasm-bindgen-futures = "0.4.50"