diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2019-02-25 12:53:22 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-25 12:53:22 +0000 |
commit | 38fc1713e7d0956b3a6fc210f179424c60c5f11f (patch) | |
tree | 2f36b1c291432109828bb3dc65ed9ee897fe843d /src/main.rs | |
parent | Merge pull request #40 from boastful-squirrel/mobile (diff) | |
parent | Fixed indentation in travis.yml (diff) | |
download | miniserve-38fc1713e7d0956b3a6fc210f179424c60c5f11f.tar.gz miniserve-38fc1713e7d0956b3a6fc210f179424c60c5f11f.zip |
Merge pull request #42 from boastful-squirrel/maud
Renders file listing using maud
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 378a4d0..e9b16df 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,5 @@ +#![feature(proc_macro_hygiene)] + use actix_web::{fs, middleware, server, App}; use clap::crate_version; use simplelog::{Config, LevelFilter, TermLogger}; @@ -10,6 +12,7 @@ use yansi::{Color, Paint}; mod args; mod auth; mod listing; +mod renderer; #[derive(Clone, Debug)] /// Configuration of the Miniserve application |