Note
The source code in main belongs to the code for the version 1.0.0.
Build release binaries with:
just releaseOptionally you can build for other targets by passing the target triple
just release <target-triple>For example:
# Install aarch64-unknown-linux-gnu target
rustup target install aarch64-unknown-linux-gnu
# Build for aarch64-unknown-linux-gnu target
just release aarch64-unknown-linux-gnuThen use the following alias for convenience
alias htps = './target/release/http-server'In order to create a release you must push a Git tag as follows
git tag -a <version> -m <message>Example
git tag -a v0.1.0 -m "First release"Tags must follow semver conventions. Tags must be prefixed with a lowercase
vletter.
Then push tags as follows:
git push origin main --follow-tagsEvery contribution to this project is welcome. Feel free to open a pull request or an issue. Just by using this project you're helping it grow. Thank you!
Distributed under the terms of both the MIT license and the Apache License (Version 2.0)