mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-10 14:44:18 +00:00
Fix serde missing derive feature
Caused broken cargo install.
This commit is contained in:
parent
138e9c2132
commit
d7b068b692
1 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@ tui = {version = "0.8", features = ["crossterm"], default-features = false }
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
backtrace = "0.3"
|
backtrace = "0.3"
|
||||||
toml = "0.5.6"
|
toml = "0.5.6"
|
||||||
serde = "1.0"
|
serde = {version = "1.0", features = ["derive"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
assert_cmd = "0.12"
|
assert_cmd = "0.12"
|
||||||
|
|
Loading…
Reference in a new issue