diff options
author | boasting-squirrel <boasting.squirrel@gmail.com> | 2019-04-01 18:36:35 +0000 |
---|---|---|
committer | boasting-squirrel <boasting.squirrel@gmail.com> | 2019-04-01 18:36:35 +0000 |
commit | 8ed18a551696ba4f89d7dfbdeaa879b21e079d33 (patch) | |
tree | 11af08394bb2a07b02f1238607f2ce7eda3e026f /src/main.rs | |
parent | Try rustup update to fix random failure (diff) | |
download | miniserve-8ed18a551696ba4f89d7dfbdeaa879b21e079d33.tar.gz miniserve-8ed18a551696ba4f89d7dfbdeaa879b21e079d33.zip |
Color schemes
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index f662a73..92f4352 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,5 @@ #![feature(proc_macro_hygiene)] +#![feature(custom_attribute)] use actix_web::{fs, middleware, server, App}; use clap::crate_version; @@ -15,6 +16,7 @@ mod auth; mod errors; mod listing; mod renderer; +mod themes; #[derive(Clone, Debug)] /// Configuration of the Miniserve application |