diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -4,10 +4,18 @@ version = "0.1.0" edition = "2024" [dependencies] -filamento = { path = "../luz/filamento" } +console_error_panic_hook = "0.1.7" +filamento = { path = "../luz/filamento", features = ["serde"] } +futures = "0.3.31" +indexmap = "2.9.0" jid = { path = "../luz/jid" } leptos = { version = "0.7.8", features = ["csr"] } leptos_meta = "0.7.8" +leptos_reactive = { version = "0.6.15", features = ["csr"] } +serde = "1.0.219" stylance = "0.6.0" thiserror = "2.0.12" tokio = { version = "1.44.2", features = ["sync"] } +tracing = "0.1.41" +tracing-wasm = "0.2.1" +uuid = { version = "1.16.0", features = ["v4"] } |