diff options
author | Boastful Squirrel <47121073+boastful-squirrel@users.noreply.github.com> | 2019-03-04 23:16:46 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-04 23:16:46 +0000 |
commit | 0dcc461b6434b62cad493f6ae6eb43bf0c3ad817 (patch) | |
tree | 435ec1758693ce99eb061809c934ac01fed934a6 /Cargo.toml | |
parent | Renamed QueryParameters struct (diff) | |
parent | Comment some stuff (diff) | |
download | miniserve-0dcc461b6434b62cad493f6ae6eb43bf0c3ad817.tar.gz miniserve-0dcc461b6434b62cad493f6ae6eb43bf0c3ad817.zip |
Merge branch 'master' into header-sorting
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,6 +1,6 @@ [package] name = "miniserve" -version = "0.3.0" +version = "0.3.1" description = "For when you really just want to serve some files over HTTP right now!" authors = ["Sven-Hendrik Haase <svenstaro@gmail.com>", "Boastful Squirrel <boastful.squirrel@gmail.com>"] repository = "https://github.com/svenstaro/miniserve" @@ -16,6 +16,9 @@ maintenance = { status = "actively-developed" } [profile.release] lto = true +opt-level = 'z' +codegen-units = 1 +panic = 'abort' [dependencies] clap = "2.29" @@ -33,4 +36,4 @@ structopt = "0.2.14" chrono = "0.4.6" chrono-humanize = "0.0.11" maud = { version = "0.20.0", features = ["actix-web"] } -serde = { version = "1.0.89", features = ["derive"] }
\ No newline at end of file +serde = { version = "1.0.89", features = ["derive"] } |