-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (48 loc) · 1.5 KB
/
Cargo.toml
File metadata and controls
53 lines (48 loc) · 1.5 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
[workspace]
resolver = "3"
members = [
"crates/remote",
"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",
]
exclude = []
[workspace.package]
edition = "2024"
license = "MIT"
repository = "https://github.com/indent-com/blit"
homepage = "https://blit.sh"
[workspace.dependencies]
blit-remote = { version = "0.33.6", path = "crates/remote" }
blit-alacritty = { version = "0.33.6", path = "crates/alacritty-driver" }
blit-fonts = { version = "0.33.6", path = "crates/fonts" }
blit-webserver = { version = "0.33.6", path = "crates/webserver" }
blit-server = { version = "0.33.6", path = "crates/server" }
blit-gateway = { version = "0.33.6", path = "crates/gateway" }
blit-proxy = { version = "0.33.6", path = "crates/proxy" }
blit-webrtc-forwarder = { version = "0.33.6", path = "crates/webrtc-forwarder" }
blit-compositor = { version = "0.33.6", path = "crates/compositor" }
blit-sd-notify = { version = "0.33.6", path = "crates/sd-notify" }
blit-ssh = { version = "0.33.6", path = "crates/ssh" }
[patch.crates-io]
alacritty_terminal = { git = "https://github.com/indent-com/alacritty.git", branch = "blit/emoji-width-fix" }
[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