Skip to content

Commit 076a749

Browse files
committed
init
0 parents  commit 076a749

15 files changed

+784
-0
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!--
2+
Developer's Certificate of Origin 1.1
3+
4+
By making a contribution to this project, I certify that:
5+
6+
(a) The contribution was created in whole or in part by me and I
7+
have the right to submit it under the open source license
8+
indicated in the file; or
9+
10+
(b) The contribution is based upon previous work that, to the best
11+
of my knowledge, is covered under an appropriate open source
12+
license and I have the right under that license to submit that
13+
work with modifications, whether created in whole or in part
14+
by me, under the same open source license (unless I am
15+
permitted to submit under a different license), as indicated
16+
in the file; or
17+
18+
(c) The contribution was provided directly to me by some other
19+
person who certified (a), (b) or (c) and I have not modified
20+
it.
21+
22+
(d) I understand and agree that this project and the contribution
23+
are public and that a record of the contribution (including all
24+
personal information I submit with it, including my sign-off) is
25+
maintained indefinitely and may be redistributed consistent with
26+
this project or the open source license(s) involved.
27+
-->

.github/workflows/build.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: build
2+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
ci:
10+
runs-on: ubuntu-latest
11+
strategy:
12+
matrix:
13+
rust:
14+
- stable
15+
- beta
16+
- nightly
17+
18+
steps:
19+
- uses: actions/checkout@v2
20+
21+
- name: Build
22+
uses: actions-rs/cargo@v1
23+
with:
24+
command: build

.github/workflows/clippy.yml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: clippy/fmt
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
9+
jobs:
10+
clippy_fmt:
11+
name: Runs Clippy and Fmt
12+
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
rust:
16+
- stable
17+
- beta
18+
- nightly
19+
20+
steps:
21+
- name: Checkout
22+
uses: actions/checkout@v2
23+
24+
- uses: actions-rs/toolchain@v1
25+
with:
26+
profile: minimal
27+
toolchain: ${{ matrix.rust }}
28+
override: true
29+
components: rustfmt, clippy
30+
31+
- name: Run fmt
32+
uses: actions-rs/cargo@v1
33+
with:
34+
command: fmt
35+
args: --all -- --check
36+
37+
- name: Run clippy
38+
uses: actions-rs/cargo@v1
39+
with:
40+
command: clippy
41+
args: -- -D warnings

.github/workflows/release.yml

+107
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
name: release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
build:
10+
name: Publish for ${{ matrix.os }}
11+
runs-on: ${{ matrix.os }}
12+
strategy:
13+
matrix:
14+
name: [
15+
linux,
16+
windows,
17+
macos
18+
]
19+
20+
include:
21+
- name: linux
22+
os: ubuntu-latest
23+
artifact_name: http-server
24+
asset_name: http-server-linux
25+
asset_extension: .tar.gz
26+
27+
- name: windows
28+
os: windows-latest
29+
artifact_name: http-server.exe
30+
asset_name: http-server-windows
31+
asset_extension: .zip
32+
33+
- name: macos
34+
os: macos-latest
35+
artifact_name: http-server
36+
asset_name: http-server-macos
37+
asset_extension: .tar.gz
38+
39+
steps:
40+
- uses: actions/checkout@v1
41+
42+
- name: Set env
43+
run: |
44+
RELEASE_VERSION=$(echo ${GITHUB_REF:10})
45+
echo ::set-env name=ASSET_NAME::${{ matrix.asset_name }}-$RELEASE_VERSION${{ matrix.asset_extension }}
46+
shell: bash
47+
48+
- uses: actions-rs/toolchain@v1
49+
with:
50+
profile: minimal
51+
toolchain: stable
52+
53+
- name: Build
54+
run: cargo build --release --locked
55+
56+
- name: Archive Release
57+
shell: bash
58+
run: |
59+
cp "target/release/${{ matrix.artifact_name }}" "${{ matrix.artifact_name }}"
60+
if [ "${{ matrix.os }}" = "windows-latest" ]; then
61+
7z a "${{ env.ASSET_NAME }}" "${{ matrix.artifact_name }}"
62+
else
63+
tar czf "${{ env.ASSET_NAME }}" "${{ matrix.artifact_name }}"
64+
fi
65+
66+
- name: Upload binaries to release
67+
uses: svenstaro/upload-release-action@v1-release
68+
with:
69+
repo_token: ${{ secrets.GITHUB_TOKEN }}
70+
file: ${{ env.ASSET_NAME }}
71+
asset_name: ${{ env.ASSET_NAME }}
72+
tag: ${{ github.ref }}
73+
74+
create-release:
75+
name: Create Release
76+
runs-on: ubuntu-latest
77+
steps:
78+
- name: Checkout code
79+
uses: actions/checkout@v2
80+
- name: Create Release
81+
id: create_release
82+
uses: actions/create-release@v1
83+
env:
84+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
85+
with:
86+
tag_name: ${{ github.ref }}
87+
release_name: ${{ github.ref }}
88+
body: ''
89+
draft: false
90+
prerelease: false
91+
92+
publish-crate:
93+
name: Publish to crates.io
94+
runs-on: ubuntu-latest
95+
steps:
96+
- uses: actions/checkout@v1
97+
98+
- uses: actions-rs/toolchain@v1
99+
with:
100+
profile: minimal
101+
toolchain: stable
102+
- run: cargo login ${CRATES_IO_TOKEN}
103+
env:
104+
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
105+
106+
- name: publish http-server
107+
run: cargo publish

.github/workflows/tests.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: tests
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v2
17+
18+
- name: Build
19+
run: cargo build --verbose
20+
21+
- name: Test
22+
run: cargo test --verbose

.gitignore

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Development #
2+
###############
3+
.env
4+
5+
# Application Related #
6+
#######################
7+
/target
8+
9+
# Compiled source #
10+
###################
11+
*.com
12+
*.class
13+
*.dll
14+
*.exe
15+
*.o
16+
*.so
17+
bundle
18+
19+
# Packages #
20+
############
21+
# it's better to unpack these files and commit the raw source
22+
# git has its own built in compression methods
23+
*.7z
24+
*.dmg
25+
*.gz
26+
*.iso
27+
*.jar
28+
*.rar
29+
*.tar
30+
*.zip
31+
32+
# Logs and databases #
33+
######################
34+
*.log
35+
*.sqlite
36+
37+
# OS generated files #
38+
######################
39+
.DS_Store
40+
.DS_Store?
41+
._*
42+
.Spotlight-V100
43+
.Trashes
44+
ehthumbs.db
45+
Thumbs.db
46+
47+
48+
#Added by cargo
49+
#
50+
#already existing elements were commented out
51+
52+
#/target

AUTHORS

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Here we try to keep track of contributors to this crate, if this is your first
2+
time participating on this repostory, please add your name and email for contact here.
3+
4+
Esteban Borai <[email protected]>

CODE_OF_CONDUCT.md

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as
6+
contributors and maintainers pledge to making participation in our project and
7+
our community a harassment-free experience for everyone, regardless of age, body
8+
size, disability, ethnicity, sex characteristics, gender identity and expression,
9+
level of experience, education, socio-economic status, nationality, personal
10+
appearance, race, religion, or sexual identity and orientation.
11+
12+
## Our Standards
13+
14+
Examples of behavior that contributes to creating a positive environment
15+
include:
16+
17+
* Using welcoming and inclusive language
18+
* Being respectful of differing viewpoints and experiences
19+
* Gracefully accepting constructive criticism
20+
* Focusing on what is best for the community
21+
* Showing empathy towards other community members
22+
23+
Examples of unacceptable behavior by participants include:
24+
25+
* The use of sexualized language or imagery and unwelcome sexual attention or
26+
advances
27+
* Trolling, insulting/derogatory comments, and personal or political attacks
28+
* Public or private harassment
29+
* Publishing others' private information, such as a physical or electronic
30+
address, without explicit permission
31+
* Other conduct which could reasonably be considered inappropriate in a
32+
professional setting
33+
34+
## Our Responsibilities
35+
36+
Project maintainers are responsible for clarifying the standards of acceptable
37+
behavior and are expected to take appropriate and fair corrective action in
38+
response to any instances of unacceptable behavior.
39+
40+
Project maintainers have the right and responsibility to remove, edit, or
41+
reject comments, commits, code, wiki edits, issues, and other contributions
42+
that are not aligned to this Code of Conduct, or to ban temporarily or
43+
permanently any contributor for other behaviors that they deem inappropriate,
44+
threatening, offensive, or harmful.
45+
46+
## Scope
47+
48+
This Code of Conduct applies both within project spaces and in public spaces
49+
when an individual is representing the project or its community. Examples of
50+
representing a project or community include using an official project e-mail
51+
address, posting via an official social media account, or acting as an appointed
52+
representative at an online or offline event. Representation of a project may be
53+
further defined and clarified by project maintainers.
54+
55+
## Enforcement
56+
57+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting [email protected].
58+
59+
All complaints will be reviewed and investigated and will result in a response that
60+
is deemed necessary and appropriate to the circumstances. The project team is
61+
obligated to maintain confidentiality with regard to the reporter of an incident.
62+
Further details of specific enforcement policies may be posted separately.
63+
64+
Project maintainers who do not follow or enforce the Code of Conduct in good
65+
faith may face temporary or permanent repercussions as determined by other
66+
members of the project's leadership.
67+
68+
## Attribution
69+
70+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72+
73+
[homepage]: https://www.contributor-covenant.org
74+
75+
For answers to common questions about this code of conduct, see
76+
https://www.contributor-covenant.org/faq

0 commit comments

Comments
 (0)