Skip to content

Commit

Permalink
Do not pull serde without serde feature
Browse files Browse the repository at this point in the history
alacritty_terminal was pulling `serde` via vte even though
serde feature was disabled.
  • Loading branch information
yizhepku authored Oct 21, 2024
1 parent 6dbd785 commit 2112e90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alacritty_terminal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 2112e90

Please sign in to comment.