24 lines
571 B
TOML
24 lines
571 B
TOML
[package]
|
|
name = "frontend"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
leptos = { version = "0.6", features = ["csr"] }
|
|
console_error_panic_hook = "0.1"
|
|
console_log = "1"
|
|
log = "0.4"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
gloo-net = "0.5"
|
|
wasm-bindgen = "0.2"
|
|
uuid = { version = "1", features = ["v4", "js"] }
|
|
futures = "0.3"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
web-sys = { version = "0.3", features = ["Window", "Storage"] }
|
|
shared = { path = "../shared" }
|
|
tailwind_fuse = "0.3.2"
|