diff options
author | boasting-squirrel <boasting.squirrel@gmail.com> | 2019-03-08 18:59:59 +0000 |
---|---|---|
committer | boasting-squirrel <boasting.squirrel@gmail.com> | 2019-03-08 18:59:59 +0000 |
commit | 9857f26bdd4e9e87b13a9755b1e00569e9459238 (patch) | |
tree | c4059052c21c3049666cc180321224ac217c83b2 /src/main.rs | |
parent | Merge pull request #44 from boastful-squirrel/header-sorting (diff) | |
download | miniserve-9857f26bdd4e9e87b13a9755b1e00569e9459238.tar.gz miniserve-9857f26bdd4e9e87b13a9755b1e00569e9459238.zip |
Download folder as a tar working
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 b15088c..9f2cacf 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,5 @@ #![feature(proc_macro_hygiene)] +#![feature(try_trait)] use actix_web::{fs, middleware, server, App}; use clap::crate_version; @@ -9,6 +10,7 @@ use std::thread; use std::time::Duration; use yansi::{Color, Paint}; +mod archive; mod args; mod auth; mod listing; |