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:
parent
6dbd785bc0
commit
2112e90f0d
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ parking_lot = "0.12.0"
|
||||||
polling = "3.0.0"
|
polling = "3.0.0"
|
||||||
regex-automata = "0.4.3"
|
regex-automata = "0.4.3"
|
||||||
unicode-width = "0.1"
|
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 }
|
serde = { version = "1", features = ["derive", "rc"], optional = true }
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
|
|
Loading…
Reference in a new issue