1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-18 13:55:23 -05:00

Do not pull serde without serde feature

alacritty_terminal was pulling `serde` via vte even though
serde feature was disabled.
This commit is contained in:
YizhePKU 2024-10-21 22:35:17 +08:00 committed by Christian Duerr
parent 948fd7e250
commit 35549130aa

View file

@ -24,7 +24,7 @@ parking_lot = "0.12.0"
polling = "3.0.0"
regex-automata = "0.4.3"
unicode-width = "0.1"
vte = { version = "0.13.0", default-features = false, features = ["ansi", "serde"] }
vte = { version = "0.13.0", default-features = false, features = ["ansi"] }
serde = { version = "1", features = ["derive", "rc"], optional = true }
[target.'cfg(unix)'.dependencies]