diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -1,8 +1,15 @@ +# SPDX-FileCopyrightText: 2025 cel <cel@bunny.garden> +# +# SPDX-License-Identifier: AGPL-3.0-or-later + [package] name = "macaw-web" version = "0.1.0" edition = "2024" +# [lib] +# crate-type = ["cdylib", "rlib"] + [dependencies] base64 = "0.22.1" chrono = "0.4.41" @@ -11,6 +18,7 @@ console_error_panic_hook = "0.1.7" filamento = { path = "../luz/filamento", features = [ "reactive_stores", "opfs", + # "serde" ] } futures = "0.3.31" indexmap = "2.9.0" @@ -29,7 +37,9 @@ tracing = "0.1.41" tracing-wasm = "0.2.1" uuid = { version = "1.16.0", features = ["v4"] } # wasm-bindgen = "0.2.100" -web-sys = { version = "0.3.77", features = ["HtmlInputElement", "FileList"] } +overlay-scrollbars = { git = "https://bunny.garden/forks/overlay-scrollbars" } +web-sys = { version = "0.3.77", features = ["HtmlInputElement", "FileList", "Url"] } +js-sys = { version = "0.3.77" } [patch.crates-io] tokio_with_wasm = { path = "../tokio-with-wasm/tokio_with_wasm" } |
