alacritty/Cargo.toml
Christian Duerr 9e89aaa477
Switch from copypasta to rust-clipboard
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.
2019-04-28 20:21:39 +00:00

16 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" }