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

feat: tokio upgrade #729

Merged
merged 29 commits into from
Aug 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
a5543f9
feat: upgrade redis to 0.21.0
Mirko-von-Leipzig Jul 26, 2021
0f46280
feat: upgrade secrecy to 0.8
Mirko-von-Leipzig Jul 27, 2021
533aa5f
feat: upgrade bytes to 1.0.1
Mirko-von-Leipzig Jul 27, 2021
91bff9f
feat: upgrade tokio to 1.9.0
Mirko-von-Leipzig Jul 27, 2021
bd0e27c
feat: add `tokio-util` for `DelayQueue`
Mirko-von-Leipzig Jul 27, 2021
b4c7235
feat: add `tokio-stream`
Mirko-von-Leipzig Jul 27, 2021
f10ec56
feat: upgrade warp to 0.3.1
Mirko-von-Leipzig Jul 27, 2021
abc4b42
feat: upgrade hyper to 0.14.11
Mirko-von-Leipzig Jul 27, 2021
8780f21
feat: upgrade futures-retry to 0.6.0
Mirko-von-Leipzig Jul 27, 2021
f16fcd3
feat: upade Cargo.lock
Mirko-von-Leipzig Jul 27, 2021
434846c
feat: upgrade reqwest to 0.11.4
Mirko-von-Leipzig Jul 27, 2021
548557d
feat: upgrade socket2 to 0.4.0
Mirko-von-Leipzig Jul 27, 2021
2dcf442
fix: redis test `Secret<String>` is not serializable
Mirko-von-Leipzig Jul 27, 2021
0e7d855
fix: mut not needed
Mirko-von-Leipzig Jul 27, 2021
b273460
fix: tests require tokio_stream
Mirko-von-Leipzig Jul 27, 2021
c65af22
feat: tokio-tungstenite upgrade
Mirko-von-Leipzig Jul 27, 2021
c79bad3
feat: upgrade socket2 to 0.4.0
Mirko-von-Leipzig Jul 27, 2021
9746923
feat: updated stream-cancel to 0.8.1
Mirko-von-Leipzig Jul 28, 2021
6d3e8cb
feat: updated futures-retry to 0.6.0 (missed some)
Mirko-von-Leipzig Jul 28, 2021
28ece7d
fix: requests retry count is off by one
Mirko-von-Leipzig Jul 28, 2021
ee5a5b5
feat: update cargo.lock
Mirko-von-Leipzig Aug 2, 2021
0efd1f4
fix: warp filter stack-overflow
Mirko-von-Leipzig Aug 4, 2021
96a674b
ci: remove `net2` audit check (not required)
Mirko-von-Leipzig Aug 11, 2021
ec55027
test: change error log to `eprintln!`
Mirko-von-Leipzig Aug 11, 2021
c404516
feat: updated yup-oauth2 to 5.1.0
Mirko-von-Leipzig Aug 12, 2021
27e7de7
ci: remove hyper rustsec audit ignore
Mirko-von-Leipzig Aug 12, 2021
7fb5bc8
ci: remove sized-chunk audit ignore
Mirko-von-Leipzig Aug 12, 2021
4882157
feat: update base64 to 0.13.0
Mirko-von-Leipzig Aug 12, 2021
6fa10a7
feat: downgrade tokio-tungstenite to 0.13.0
Mirko-von-Leipzig Aug 12, 2021
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
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,8 @@ jobs:

- name: Audit
# FIXME: Disabled:
# 1. spin: is no longer actively maintained
# 2. sized-chunks: no safe upgrade.
# 3. net2: has been removed from crates, still present as a dep to tokio
# 4. hyper: requires 18 exabytes of data transfer, can be removed with tokio 1.0 upgrade
run: cargo audit --ignore RUSTSEC-2019-0031 --ignore RUSTSEC-2020-0041 --ignore RUSTSEC-2020-0016 --ignore RUSTSEC-2021-0078 --ignore RUSTSEC-2021-0079
# 1. spin: is no longer actively maintained
run: cargo audit --ignore RUSTSEC-2019-0031

- name: Test
run: timeout 15m cargo test --all --all-features
Expand Down
Loading