-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (68 loc) · 1.35 KB
/
Cargo.toml
File metadata and controls
70 lines (68 loc) · 1.35 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[workspace]
resolver = "2"
members = [
"crates/fonts/native",
"crates/wm-runtime",
"crates/cli/core",
"crates/cli",
"crates/core",
"crates/css",
"crates/css-lsp/core",
"crates/css-lsp/stdio",
"crates/css-lsp/web",
"crates/config",
"crates/ipc/core",
"crates/ipc/native",
"crates/ipc/browser",
"crates/ipc",
"crates/logging",
"crates/scene",
"crates/runtimes/js/core",
"crates/runtimes/js/browser",
"crates/runtimes/js/native",
"apps/spiders-wm",
"apps/spiders-wm-x",
"apps/spiders-wm-www",
]
[workspace.package]
edition = "2024"
license = "MIT OR Apache-2.0"
version = "0.1.0"
publish = false
[workspace.dependencies]
anyhow = "1"
clsx = "0.1.1"
console_error_panic_hook = "0.1.7"
cssparser = "0.36"
dioxus = "0.7.1"
js-sys = "0.3"
leptos = "0.8.17"
leptos_router = "0.8.8"
lsp-server = "0.7"
lsp-types = "0.94"
oxc = "0.119.0"
oxc_resolver = "11.19.1"
regex = "1"
rquickjs = "0.11.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde-wasm-bindgen = "0.6"
tokio = { version = "=1.48.0", features = [
"io-std",
"macros",
"rt-multi-thread",
] }
thiserror = "2"
tracing = "0.1"
tracing-log = "0.2"
tracing-subscriber = { version = "0.3", features = [
"env-filter",
"fmt",
"ansi",
] }
calloop = "0.14.4"
x11rb = "0.13.2"
xkbcommon = "0.9.0"
wasm-bindgen = "0.2.117"
wasm-bindgen-futures = "0.4"
web-sys = "0.3"