summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 869ee3d4acda123f44522ad9f81d9138bd4e06b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "macaw-web"
version = "0.1.0"
edition = "2024"

# [lib]
# crate-type = ["cdylib", "rlib"]

[dependencies]
base64 = "0.22.1"
chrono = "0.4.41"
chrono-humanize = "0.2.3"
console_error_panic_hook = "0.1.7"
filamento = { path = "../luz/filamento", features = [
	"reactive_stores",
	"opfs",
	# "serde"
] }
futures = "0.3.31"
indexmap = "2.9.0"
jid = { path = "../luz/jid" }
leptos = { version = "0.8.2", features = ["csr"] }
# leptos-use = "0.15.7"
# leptos_meta = "0.8.2"
# reactive_graph = "0.2.2"
# leptos_reactive = { version = "0.6.15", features = ["csr"] }
reactive_stores = "0.2.2"
serde = "1.0.219"
stylance = "0.6.0"
thiserror = "2.0.12"
tokio = { version = "1.44.2", features = ["sync", "rt"] }
tracing = "0.1.41"
tracing-wasm = "0.2.1"
uuid = { version = "1.16.0", features = ["v4"] }
# wasm-bindgen = "0.2.100"
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" }