Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reimplement server.rs with warp #20

Merged
merged 12 commits into from
Nov 13, 2019
29 changes: 29 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ chashmap = "*"
plugin = "*"
tree_magic = "*"
byte-unit = "*"
snafu = "*"
bytes = "*"
#hyper = "*"
#hyper-openssl = "*"

Expand Down
2 changes: 1 addition & 1 deletion src/configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ pub struct WebUI {

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Store {
pub max_limit: i32
pub max_limit: u64
}

#[derive(Debug, Clone, Serialize, Deserialize)]
Expand Down
Loading