-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (67 loc) · 2.57 KB
/
Copy pathCargo.toml
File metadata and controls
72 lines (67 loc) · 2.57 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
71
72
[workspace]
resolver = "3"
members = [
"crates/guest",
"crates/remote",
"crates/fssync",
"crates/git",
"crates/lsp",
"crates/alacritty-driver",
"crates/server",
"crates/gateway",
"crates/browser",
"crates/cli",
"crates/fonts",
"crates/webserver",
"crates/webrtc-forwarder",
"crates/compositor",
"crates/proxy",
"crates/sd-notify",
"crates/ssh",
"crates/desktop",
]
# A path dependency living under the workspace root would otherwise become an
# implicit member, so `--workspace` clippy/test/fmt runs would lint, test, and
# reformat third-party code we only consume.
exclude = ["vendor/cros-codecs", "vendor/wayland-backend", "extensions"]
[workspace.package]
edition = "2024"
license = "MIT"
repository = "https://github.com/indent-com/blit"
homepage = "https://blit.sh"
[workspace.dependencies]
blit-guest = { version = "0.55.1", path = "crates/guest" }
blit-remote = { version = "0.55.1", path = "crates/remote" }
blit-fssync = { version = "0.55.1", path = "crates/fssync" }
blit-git = { version = "0.55.1", path = "crates/git" }
blit-lsp = { version = "0.55.1", path = "crates/lsp" }
blit-alacritty = { version = "0.55.1", path = "crates/alacritty-driver" }
blit-fonts = { version = "0.55.1", path = "crates/fonts" }
blit-webserver = { version = "0.55.1", path = "crates/webserver" }
blit-server = { version = "0.55.1", path = "crates/server", default-features = false }
blit-gateway = { version = "0.55.1", path = "crates/gateway" }
blit-proxy = { version = "0.55.1", path = "crates/proxy" }
blit-webrtc-forwarder = { version = "0.55.1", path = "crates/webrtc-forwarder" }
blit-compositor = { version = "0.55.1", path = "crates/compositor" }
blit-sd-notify = { version = "0.55.1", path = "crates/sd-notify" }
blit-ssh = { version = "0.55.1", path = "crates/ssh" }
blit-desktop = { version = "0.55.1", path = "crates/desktop" }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
[profile.profiling]
inherits = "release"
debug = true
strip = false
lto = false
codegen-units = 16
# wayland-backend broadcasts wl_registry.global_remove to every client, without
# consulting the global's `can_view` filter -- unlike all three paths that send
# wl_registry.global. blit publishes one owner-filtered wl_output per toplevel,
# so closing any window told every *other* client to remove a global it had
# never been shown. xwayland-satellite unwraps that lookup and panics, taking
# X11 down with it. Still present in 0.3.17; see vendor/wayland-backend.
[patch.crates-io]
wayland-backend = { path = "vendor/wayland-backend" }