-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (40 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
47 lines (40 loc) · 1.06 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
[workspace]
resolver = "2"
members = [
"crates/pulpkit-render",
"crates/pulpkit-layout",
"crates/pulpkit-wayland",
"crates/pulpkit-lua",
"crates/pulpkit-sub",
"crates/pulpkit-core", "poc", "mcp",
]
[workspace.package]
version = "0.3.0"
edition = "2024"
license = "MIT"
[workspace.dependencies]
pulpkit-render = { path = "crates/pulpkit-render" }
pulpkit-layout = { path = "crates/pulpkit-layout" }
pulpkit-wayland = { path = "crates/pulpkit-wayland" }
pulpkit-lua = { path = "crates/pulpkit-lua" }
pulpkit-sub = { path = "crates/pulpkit-sub" }
pulpkit-core = { path = "crates/pulpkit-core" }
# Rendering
tiny-skia = "0.11"
fontdb = "0.22"
rustybuzz = "0.20"
ab_glyph = "0.2"
image = { version = "0.25", default-features = false, features = ["png"] }
# Wayland
smithay-client-toolkit = { version = "0.20", features = ["calloop"] }
wayland-client = "0.31"
wayland-cursor = "0.31"
calloop = "0.14"
# Scripting
mlua = { version = "0.11", features = ["luajit", "vendored"] }
# Layout
taffy = "0.9"
# Utilities
anyhow = "1"
log = "0.4"
env_logger = "0.11"