mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
9e89aaa477
This switches our own `copypasta` crate with the more standardized `clipboard` library, which allows us to get rid of the `xclip` dependency on X11. Additionally, this lays the foundation for native Wayland clipboard support once the clipboard crate is updated (or a fork is created). Fixes #5.
15 lines
228 B
TOML
15 lines
228 B
TOML
[workspace]
|
|
members = [
|
|
"alacritty",
|
|
"alacritty_terminal",
|
|
"font",
|
|
"winpty"
|
|
]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
debug = 1
|
|
incremental = false
|
|
|
|
[patch.crates-io]
|
|
servo-freetype-sys = { path = "servo-freetype-proxy" }
|