14 lines
297 B
TOML
14 lines
297 B
TOML
[package]
|
|
name = "frontend"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
app = { path = "../app", features = ["hydrate"] }
|
|
leptos = { workspace = true, features = [ "hydrate" ] }
|
|
|
|
console_error_panic_hook.workspace = true
|
|
wasm-bindgen.workspace = true
|