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

chore: update deps #265

Merged
merged 39 commits into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from 31 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
9fbe589
Initial bump to 0.23 rustls
pinkforest Mar 26, 2024
ef289f7
Bump async-io from 1.13.0 to 2.3.2
dependabot[bot] May 9, 2024
e35e253
chore: update tracing
morenol May 9, 2024
b5a06a1
chore: fire again sleeper. See: https://github.com/smol-rs/async-io/p…
morenol May 9, 2024
a072a8b
chore: config.toml
morenol May 9, 2024
224bf45
Revert "chore: fire again sleeper. See: https://github.com/smol-rs/as…
morenol May 9, 2024
6532a92
chore: update test
morenol May 9, 2024
ab9d2b0
chore: update changelog
morenol May 9, 2024
17a45f0
chore: update deps
nacardin Jul 2, 2024
7beb2e7
fs
nacardin Jul 3, 2024
b0aca21
Merge commit 'refs/pull/241/head' of github.com:infinyon/future-aio i…
nacardin Jul 3, 2024
e4c74ba
win/mac
nacardin Jul 3, 2024
e050c7a
fmt
nacardin Jul 3, 2024
c990b24
Merge branch 'master' into dependabot/cargo/async-io-2.3.2
morenol Jul 3, 2024
f706e39
fix fd
nacardin Jul 5, 2024
aa93246
timer
nacardin Jul 5, 2024
24f169f
remove http features
nacardin Jul 5, 2024
36f7b93
remove http features
nacardin Jul 5, 2024
9fae865
test attributes
nacardin Jul 9, 2024
64b9d5f
remove async-std
nacardin Jul 9, 2024
523a27c
restore test data
nacardin Jul 9, 2024
f8bfb63
reduce deps
nacardin Jul 9, 2024
42f1ca5
revert some
nacardin Jul 10, 2024
a51c4bd
condvar
nacardin Jul 10, 2024
0a7edcb
wasm
nacardin Jul 10, 2024
d64542c
sync
nacardin Jul 10, 2024
da81d6d
revert more
nacardin Jul 10, 2024
0c5a462
revert more
nacardin Jul 10, 2024
4aa9dc0
Merge commit 'refs/pull/258/head' of github.com:infinyon/future-aio i…
nacardin Jul 11, 2024
11da307
cleanup
nacardin Jul 11, 2024
3274b66
revert Makefile
nacardin Jul 11, 2024
1090120
use anyhow
nacardin Jul 11, 2024
a728680
tls anyhow
nacardin Jul 12, 2024
b6364a2
remove AllTcpStream
nacardin Jul 12, 2024
35c5f50
revert trait error
nacardin Jul 12, 2024
a6662b9
retry deps
nacardin Jul 12, 2024
942643e
fix make target
nacardin Jul 12, 2024
f47741b
revert edition
nacardin Jul 12, 2024
0fb03cb
remove map_err
nacardin Jul 12, 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
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
with:
key: windows-latest-test
- uses: cargo-bins/cargo-binstall@main
- name: Install NASM for AWS-LC
uses: ilammy/setup-nasm@v1
- name: Install bindgen-cli
run: cargo install --force --locked bindgen-cli
- name: Test Setup
run: |
make certs
Expand All @@ -29,7 +33,7 @@ jobs:
- name: Test
run: |
Start-Process cmd -Args /c,"http-server --tls --tls-key certs/test-certs/server.key --tls-cert certs/test-certs/server.crt --tls-key-algorithm pkcs8"
cargo test --features task,subscriber,fixture,task_unstable,io,sync,future,net,tls,rust_tls,timer,fs,zero_copy,mmap,retry,http-client-json,__skip-http-client-cert-verification
cargo test --features task,subscriber,fixture,task_unstable,io,sync,future,net,tls,rust_tls,timer,fs,zero_copy,mmap,retry
test:
name: Check ${{ matrix.check }} on (${{ matrix.os }})
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ target/
.docker-cargo
target-docker
.vscode/tasks.json
.vscode/settings.json
.idea/
Cargo.lock
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release Notes

## 0.7.0
* Update all depencencies to latest versions
* Timer sleeper only fires once
* Remove `http-client`
* Rename `native2_tls` feature to `native_tls`
* Note: `rustls` now uses `aws-lc` instead of `ring`


## 0.5.0
* Move to `memmap2` because `memmap` is unmaintained.
* Enable `rustls` on `windows`
Expand Down
Loading
Loading