Skip to content

Commit

Permalink
chore: update deps (#265)
Browse files Browse the repository at this point in the history
* Initial bump to 0.23 rustls

* Bump async-io from 1.13.0 to 2.3.2

Bumps [async-io](https://github.com/smol-rs/async-io) from 1.13.0 to 2.3.2.
- [Release notes](https://github.com/smol-rs/async-io/releases)
- [Changelog](https://github.com/smol-rs/async-io/blob/master/CHANGELOG.md)
- [Commits](smol-rs/async-io@v1.13.0...v2.3.2)

---
updated-dependencies:
- dependency-name: async-io
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* chore: update tracing

* chore: fire again sleeper. See: smol-rs/async-io#129

* chore: config.toml

* Revert "chore: fire again sleeper. See: smol-rs/async-io#129"

This reverts commit b5a06a1.

* chore: update test

* chore: update changelog

* chore: update deps

* fs

* win/mac

* fmt

* fix fd

* timer

* remove http features

* remove http features

* test attributes

* remove async-std

* restore test data

* reduce deps

* revert some

* condvar

* wasm

* sync

* revert more

* revert more

* cleanup

* revert Makefile

* use anyhow

* tls anyhow

* remove AllTcpStream

* revert trait error

* retry deps

* fix make target

* revert edition

* remove map_err

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: pinkforest <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Luis Moreno <[email protected]>
Co-authored-by: morenol <[email protected]>
  • Loading branch information
5 people authored Jul 12, 2024
1 parent bb6430e commit bdf4c3b
Show file tree
Hide file tree
Showing 43 changed files with 393 additions and 4,580 deletions.
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

0 comments on commit bdf4c3b

Please sign in to comment.