Move server to (temporarily) require Rust Beta or stable 1.31+

This commit is contained in:
Lucien Greathouse
2018-11-27 10:45:02 -08:00
parent 9db31c9191
commit 6617b8b6c4
6 changed files with 15 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
use std::path::PathBuf;
use std::process;
use project::Project;
use crate::project::Project;
pub fn init(project_path: &PathBuf) {
match Project::init(project_path) {

View File

@@ -4,7 +4,7 @@ use std::{
sync::Arc,
};
use ::{
use crate::{
project::Project,
web::Server,
session::Session,