version 0.5

note how to build releases
This commit is contained in:
Damjan Georgievski 2018-07-21 19:32:04 +02:00
parent 9373a1cb9c
commit 15704d04e7
2 changed files with 7 additions and 1 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "http-server"
version = "0.4.0"
version = "0.5.0"
authors = ["Damjan Georgievski <gdamjan@gmail.com>"]
license = "MIT"
readme = "README.md"

View file

@ -25,3 +25,9 @@ ARGS:
## FAQ
* Q: why .tar and not .zip? A: you can't stream a zip file efficiently, it needs to seek and write to the beggining of a file.
## Release builds
```
cargo build --release
strip --strip-unneeded ./target/release/http-server
```