diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2023-11-10 18:16:22 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-10 18:16:22 +0400 |
commit | 5060f8eeb864e8c304fbad9588bdd882db942356 (patch) | |
tree | b615ded19e6ac545b495f716e2a22ecd903332af /alacritty_terminal/Cargo.toml | |
parent | 3ffd6c8f26f9788466b9ba95659b8de970a10f08 (diff) | |
download | alacritty-5060f8eeb864e8c304fbad9588bdd882db942356.tar.gz alacritty-5060f8eeb864e8c304fbad9588bdd882db942356.zip |
Remove `alacritty_config` from alacritty_terminal
There's no need to force alacritty's user configuration on
other users of the crate, thus provide the options actually used
by alacritty_terminal itself.
Diffstat (limited to 'alacritty_terminal/Cargo.toml')
-rw-r--r-- | alacritty_terminal/Cargo.toml | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/alacritty_terminal/Cargo.toml b/alacritty_terminal/Cargo.toml index a0bdac49..a7762b1e 100644 --- a/alacritty_terminal/Cargo.toml +++ b/alacritty_terminal/Cargo.toml @@ -9,28 +9,22 @@ homepage = "https://github.com/alacritty/alacritty" edition = "2021" rust-version = "1.70.0" -[dependencies.alacritty_config_derive] -path = "../alacritty_config_derive" -version = "0.2.2-dev" - -[dependencies.alacritty_config] -path = "../alacritty_config" -version = "0.1.2-dev" +[features] +default = ["serde"] +serde = ["dep:serde", "bitflags/serde", "vte/serde"] [dependencies] base64 = "0.21.3" -bitflags = { version = "2.2.1", features = ["serde"] } +bitflags = "2.4.1" home = "0.5.5" libc = "0.2" log = "0.4" parking_lot = "0.12.0" polling = "3.0.0" regex-automata = "0.3.6" -serde = { version = "1", features = ["derive", "rc"] } -serde_yaml = "0.9.25" -toml = "0.8.2" unicode-width = "0.1" vte = { version = "0.12.0", default-features = false, features = ["ansi", "serde"] } +serde = { version = "1", features = ["derive", "rc"], optional = true } [target.'cfg(unix)'.dependencies] rustix-openpty = "0.1.1" |