mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-26 06:00:21 +00:00
refactor: remove unused typed-builder proc macro usage in options (#1156)
This commit is contained in:
parent
ccb93223f7
commit
b9c106c9cf
1 changed files with 1 additions and 2 deletions
|
@ -11,7 +11,6 @@ use indexmap::IndexSet;
|
|||
use layout_options::*;
|
||||
use regex::Regex;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use typed_builder::*;
|
||||
|
||||
#[cfg(feature = "battery")]
|
||||
use starship_battery::Manager;
|
||||
|
@ -44,7 +43,7 @@ pub struct Config {
|
|||
pub processes: Option<ProcessConfig>,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, Default, Deserialize, Serialize, TypedBuilder)]
|
||||
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
||||
pub struct ConfigFlags {
|
||||
pub hide_avg_cpu: Option<bool>,
|
||||
pub dot_marker: Option<bool>,
|
||||
|
|
Loading…
Reference in a new issue