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

[pull] master from jayjamesjay:master #4

Open
wants to merge 51 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
eba0471
Update Travis CI link
jayjamesjay Dec 11, 2020
a174a59
basic const fn
jayjamesjay Dec 12, 2020
39c25c2
Status fn new
jayjamesjay Dec 12, 2020
b760ba7
replace `FromStr` with `TryFrom` for Uri & Authority
jayjamesjay Dec 12, 2020
7d4cee5
update deps
jayjamesjay Jun 30, 2021
abea657
Merge pull request #47 from jayjamesjay/v0.8.0
jayjamesjay Jul 1, 2021
95b9e01
v0.8.0
jayjamesjay Jul 1, 2021
1dff4d7
update docs
jayjamesjay Jul 1, 2021
386d56f
replace Travis CI with Github Actions
jayjamesjay Jul 3, 2021
29fc1f0
fix rustls issue
jayjamesjay Jul 7, 2021
55abf2a
update gh actions
jayjamesjay Jul 9, 2021
eff5b9d
fix command in gh actions
jayjamesjay Jul 9, 2021
5a85a07
change default headers & migrate to rust 2021
jayjamesjay Nov 19, 2022
7fe6ac6
restore rustls 0.19
jayjamesjay Nov 19, 2022
b8576a1
security update
jayjamesjay Mar 25, 2023
a4c6b9e
update docs
jayjamesjay Mar 25, 2023
9783b62
update dependencies
jayjamesjay Jul 7, 2023
1c8cba1
update deps
jayjamesjay Sep 17, 2023
40d7814
Update rustls 0.21.7 and adapt code
DamienVoreiter Sep 21, 2023
626fe4b
add config flags
jayjamesjay Sep 21, 2023
9b7c552
set rustls-pemfile as optional dependency
jayjamesjay Sep 22, 2023
2a06228
Merge pull request #60 from DamienVoreiter/update_rustls_0_21_7
jayjamesjay Sep 22, 2023
7a1a409
improve examples
jayjamesjay Sep 23, 2023
84c7030
update readme
jayjamesjay Sep 23, 2023
0777230
update Uri parser
jayjamesjay Sep 24, 2023
55bb7c0
refactor uri
jayjamesjay Sep 25, 2023
33e7912
update dependencies
jayjamesjay Oct 2, 2023
cfacb9f
Merge pull request #63 from jayjamesjay/v0.10
jayjamesjay Oct 2, 2023
db6631e
update dependencies
jayjamesjay Oct 29, 2023
2abc8fb
update dependencies
jayjamesjay Dec 1, 2023
7f50f7f
update dependencies
jayjamesjay Apr 21, 2024
8000c69
Fix for incorrect Content-Length: 0 handling
ghu Apr 22, 2024
e1f8622
Merge pull request #65 from ghu/patch-1
jayjamesjay Jun 20, 2024
d510cbc
remove current timeout implementation
jayjamesjay Jun 20, 2024
47e81c4
timeout - new impl - init
jayjamesjay Jun 21, 2024
424fb46
move more functionalities to Stream
jayjamesjay Jun 21, 2024
9f48e92
update stream & fix examples
jayjamesjay Jun 22, 2024
038f10d
improve reading from stream
jayjamesjay Jun 22, 2024
666c218
refactor and document request module
jayjamesjay Jun 24, 2024
76f0536
improve docs and refactor stream
jayjamesjay Jun 25, 2024
1f1a171
tests for stream
jayjamesjay Jun 26, 2024
44ab978
update rustls dependencies
jayjamesjay Jun 26, 2024
3cbb03e
improve docs
jayjamesjay Jun 27, 2024
0aaf2e2
Merge pull request #66 from jayjamesjay/v0.11
jayjamesjay Jun 27, 2024
3cca3f8
RedirectPolicy init
jayjamesjay Jul 28, 2024
6c91c2e
update dependencies
jayjamesjay Jul 28, 2024
f46dd1c
basic redirect support
jayjamesjay Jul 28, 2024
ce69208
improve parsing relative uri
jayjamesjay Aug 15, 2024
b3f828c
improve timeout error handling & relative uri support
jayjamesjay Aug 17, 2024
e706672
Merge branch 'master' into v0.12
jayjamesjay Aug 17, 2024
c5c2985
Merge pull request #67 from jayjamesjay/v0.12
jayjamesjay Aug 17, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,7 @@ jobs:
- uses: actions/checkout@v1
- name: Build
run: cargo build --verbose
- name: Build with Rusttls
run: cargo build --verbose --no-default-features --features rust-tls
- name: Run tests
run: cargo test --verbose
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/target
**/*.rs.bk
/.idea
.DS_store
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

3 changes: 1 addition & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Contributing
Code and documentation PRs are always welcome. Just remember to list out introduced changes.

If you want to suggest some improvements, report a bug, discuss a functionality, etc.,
feel free to open an issue.
If you want to suggest some improvements, report a bug, discuss a functionality, etc., feel free to open an issue.
Loading