diff options
author | boasting-squirrel <boasting.squirrel@gmail.com> | 2019-04-07 11:27:25 +0000 |
---|---|---|
committer | boasting-squirrel <boasting.squirrel@gmail.com> | 2019-04-07 11:27:25 +0000 |
commit | bbdafc3e121942c95ba81db1cba30fe438d88dfb (patch) | |
tree | 26edf6679242462eff4d97c0ee14f84b055003ae /src/main.rs | |
parent | Fix CSS bug (diff) | |
download | miniserve-bbdafc3e121942c95ba81db1cba30fe438d88dfb.tar.gz miniserve-bbdafc3e121942c95ba81db1cba30fe438d88dfb.zip |
Use strum to reduce boilerplate on ColorScheme enum + removed useless Debug derives
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 64de8d3..a703b00 100644 --- a/src/main.rs +++ b/src/main.rs @@ -19,7 +19,7 @@ mod listing; mod renderer; mod themes; -#[derive(Clone, Debug)] +#[derive(Clone)] /// Configuration of the Miniserve application pub struct MiniserveConfig { /// Enable verbose mode |