-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
81 lines (74 loc) · 2.34 KB
/
Cargo.toml
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
71
72
73
74
75
76
77
78
79
80
81
[package]
name = "kumo"
version = "0.1.0"
description = "A Wayland Mobile Browser"
authors = ["Christian Duerr <[email protected]>"]
repository = "https://github.com/catacombing/kumo"
rust-version = "1.76.0"
license = "GPL-3.0"
edition = "2021"
[features]
default = []
profiling = ["dep:profiling", "dep:puffin_http"]
[workspace]
members = [
"funq",
"funq/funq_derive",
"libwpe-sys",
"wpe-jsc",
"wpe-jsc-sys",
"wpe-platform",
"wpe-platform-sys",
"wpe-webkit",
"wpe-webkit-sys",
]
# Workspace member dependencies are defined here for consistency and easier updates.
[workspace.dependencies]
gio = "0.20.1"
gio-sys = "0.20.1"
glib = "0.20.1"
glib-sys = "0.20.1"
gobject-sys = "0.20.1"
libc = "0.2.158"
pkg-config = "0.3.30"
proc-macro2 = "1.0.78"
quote = "1.0.35"
rustix = { version = "0.38.31", features = ["event"] }
soup = { package = "soup3", version = "0.7.0" }
soup-sys = { package = "soup3-sys", version = "0.7.0" }
syn = { version = "2.0.51", features = ["full", "extra-traits"] }
xkbcommon-sys = "1.4.1"
# Dependencies only used by the binary.
[dependencies]
bitflags = "2.5.0"
dashmap = "6.0.1"
dirs = "5.0.1"
funq = { path = "./funq" }
gio.workspace = true
glib.workspace = true
glutin = { version = "0.32.1", default-features = false, features = ["wayland"] }
indexmap = "2.2.6"
pangocairo = "0.20.0"
profiling = { version = "1.0.14", optional = true, features = ["profile-with-puffin"] }
puffin_http = { version = "0.16.0", optional = true }
raw-window-handle = "0.6.0"
rusqlite = { version = "0.32.0", features = ["uuid"] }
smallvec = "1.13.2"
smithay-client-toolkit = { version = "0.19.1", default-features = false, features = ["xkbcommon"] }
thiserror = "2.0.3"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
wayland-backend = { version = "=0.3.4", features = ["client_system"] }
wpe-webkit = { path = "./wpe-webkit" }
wpe-platform = { path = "./wpe-platform" }
rustix.workspace = true
drm = "0.14.0"
libc.workspace = true
uuid = { version = "1.11.0", features = ["v4"] }
librsvg = "2.58.5"
[build-dependencies]
gl_generator = "0.14.0"
[dev-dependencies]
reqwest = { version = "0.12.2", default-features = false, features = ["default-tls", "blocking"] }
[patch.crates-io]
wayland-backend = { git = "https://github.com/Smithay/wayland-rs", rev = "f0d51bbe5b778fb50721b107954b2b4d8495e2d9" }