Fix serde missing derive feature
Caused broken cargo install.
This commit is contained in:
parent
138e9c2132
commit
d7b068b692
|
@ -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"
|
||||||
|
@ -54,4 +54,4 @@ assets = [
|
||||||
extended-description = """\
|
extended-description = """\
|
||||||
By default, bottom will look for a config file in ~/.config/bottom/bottom.toml.
|
By default, bottom will look for a config file in ~/.config/bottom/bottom.toml.
|
||||||
If one is not specified it will fall back to defaults.
|
If one is not specified it will fall back to defaults.
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue