-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 946 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (30 loc) · 946 Bytes
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
[workspace]
members = [
"alacritree",
"alacritty",
"alacritty_terminal",
"alacritty_config",
"alacritty_config_derive",
]
resolver = "2"
[workspace.package]
edition = "2024"
rust-version = "1.85.0"
[profile.release]
lto = "thin"
debug = 1
incremental = false
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[workspace.dependencies]
toml = "0.9.11"
toml_edit = "0.24.0"
# TODO: Validation of fix for #6978. Remove before next release and use released `x11-clipboard`.
[patch.crates-io]
x11-clipboard = { git = "https://github.com/quininer/x11-clipboard.git", rev = "19ab2163cf0bd0db607e827a5214571990307866" }
# Vendored egui-winit with a one-liner so Ctrl+V falls through to a Key event
# when the clipboard isn't text (e.g. holds an image) — matches alacritty's
# raw 0x16 forwarding and lets TUIs like Claude Code do their own wl-paste.
egui-winit = { path = "egui-winit" }