Commit f27222d
authored
Bumps [tests/perf/s2n-quic](https://github.com/aws/s2n-quic) from
`c64faf9` to `ff81604`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws/s2n-quic/commit/ff81604a78b897b6ae01f53e210a4c88ff1193cf"><code>ff81604</code></a>
opt(s2n-quic-dc): skip epoll registration in happy path (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2754">#2754</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/bd9ee3edc80738d5cb6fe9ee7bc9ee06b2ad344e"><code>bd9ee3e</code></a>
feat(s2n-quic-dc): implement dcQUIC control (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2755">#2755</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/4d3d94f2cb89085cb8eeff58ac5203ceaef6c54b"><code>4d3d94f</code></a>
feat(s2n-quic-dc): implement dcQUIC's server, client, and io providers
(<a
href="https://redirect.github.com/aws/s2n-quic/issues/2752">#2752</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/a2ad54e05e0109467e22c829899861e699c5b6e5"><code>a2ad54e</code></a>
build(deps): bump actions/checkout from 4 to 5 (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2751">#2751</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/30b021edc294601ec759ef5c2801c7f38c518860"><code>30b021e</code></a>
fix: clippy lint updates for rust version 1.89.0 (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2750">#2750</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/s2n-quic/compare/c64faf9c13ce423ff42145234da9a6e1fcad5955...ff81604a78b897b6ae01f53e210a4c88ff1193cf">compare
view</a></li>
</ul>
</details>
<br />
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b95b56b commit f27222d
1 file changed
Lines changed: 1 addition & 1 deletion
- .github/workflows/book.yml+1-1
- .github/workflows/ci.yml+26-26
- .github/workflows/codebuild.yml+1-1
- .github/workflows/dashboard.yml+2-2
- .github/workflows/dependencies.yml+2-2
- .github/workflows/qns.yml+10-10
- .github/workflows/release.yml+1-1
- .github/workflows/tshark.yml+1-1
- common/s2n-codec/src/decoder/mod.rs+2-2
- dc/s2n-quic-dc-benches/src/datagram/recv.rs+1-1
- dc/s2n-quic-dc/Cargo.toml+2
- dc/s2n-quic-dc/src/control.rs+43
- dc/s2n-quic-dc/src/lib.rs+1
- dc/s2n-quic-dc/src/msg/send.rs+1-1
- dc/s2n-quic-dc/src/packet/control/decoder.rs+1-1
- dc/s2n-quic-dc/src/path/secret/map/state.rs+1-1
- dc/s2n-quic-dc/src/psk.rs+6
- dc/s2n-quic-dc/src/psk/client.rs+296
- dc/s2n-quic-dc/src/psk/client/builder.rs+96
- dc/s2n-quic-dc/src/psk/io.rs+433
- dc/s2n-quic-dc/src/psk/server.rs+98
- dc/s2n-quic-dc/src/psk/server/builder.rs+112
- dc/s2n-quic-dc/src/stream/environment.rs+2-2
- dc/s2n-quic-dc/src/stream/environment/tokio/tcp.rs+2-1
- dc/s2n-quic-dc/src/stream/recv/dispatch/queue.rs+1-1
- dc/s2n-quic-dc/src/stream/recv/shared.rs+1-1
- dc/s2n-quic-dc/src/stream/server/tokio.rs+2-2
- dc/s2n-quic-dc/src/stream/server/tokio/tcp.rs+31-8
- dc/s2n-quic-dc/src/stream/server/tokio/tcp/fresh.rs+13-6
- dc/s2n-quic-dc/src/stream/server/tokio/tcp/lazy.rs+154
- dc/s2n-quic-dc/src/stream/server/tokio/tcp/manager.rs+1-1
- dc/s2n-quic-dc/src/stream/server/tokio/tcp/worker.rs+7-9
- dc/s2n-quic-dc/src/stream/shared.rs+5-5
- dc/s2n-quic-dc/src/stream/testing.rs+3-2
- dc/s2n-quic-dc/src/stream/tests/accept_queue.rs+3-1
- dc/s2n-quic-dc/src/sync/ring_deque.rs+2-2
- quic/s2n-quic-core/src/buffer/reader.rs+4-4
- quic/s2n-quic-core/src/buffer/reader/complete.rs+2-2
- quic/s2n-quic-core/src/buffer/reader/empty.rs+2-2
- quic/s2n-quic-core/src/buffer/reader/incremental.rs+2-2
- quic/s2n-quic-core/src/buffer/reader/limit.rs+2-2
- quic/s2n-quic-core/src/buffer/reader/storage.rs+2-2
- quic/s2n-quic-core/src/buffer/reader/storage/buf.rs+2-2
- quic/s2n-quic-core/src/buffer/reader/storage/bytes.rs+4-4
- quic/s2n-quic-core/src/buffer/reader/storage/chunk.rs+2-2
- quic/s2n-quic-core/src/buffer/reader/storage/full_copy.rs+2-2
- quic/s2n-quic-core/src/buffer/reader/storage/io_slice.rs+2-2
- quic/s2n-quic-core/src/buffer/reader/storage/slice.rs+2-2
- quic/s2n-quic-core/src/buffer/reassembler/reader.rs+2-2
- quic/s2n-quic-core/src/buffer/reassembler/request.rs+1-1
- quic/s2n-quic-core/src/buffer/writer/storage.rs+3-3
- quic/s2n-quic-core/src/connection/close.rs+16-13
- quic/s2n-quic-core/src/crypto/payload.rs+3-3
- quic/s2n-quic-core/src/event/snapshot.rs+1-1
- quic/s2n-quic-core/src/interval_set/mod.rs+4-4
- quic/s2n-quic-core/src/io/rx.rs+1-1
- quic/s2n-quic-core/src/io/tx.rs+1-1
- quic/s2n-quic-core/src/packet/number/map.rs+2-2
- quic/s2n-quic-core/src/packet/retry.rs+1-1
- quic/s2n-quic-core/src/packet/version_negotiation.rs+2-2
- quic/s2n-quic-core/src/stream/testing.rs+2-2
- quic/s2n-quic-core/src/sync/spsc/recv.rs+3-3
- quic/s2n-quic-core/src/sync/spsc/send.rs+3-3
- quic/s2n-quic-core/src/sync/spsc/state.rs+1-1
- quic/s2n-quic-core/src/sync/spsc/tests.rs+1-1
- quic/s2n-quic-core/src/task/waker/contract.rs+1-1
- quic/s2n-quic-core/src/time/clock.rs+1-1
- quic/s2n-quic-core/src/transmission/writer/testing.rs+1-1
- quic/s2n-quic-platform/src/io/testing/message.rs+1-1
- quic/s2n-quic-platform/src/message.rs+4-1
- quic/s2n-quic-platform/src/message/cmsg/storage.rs+3-3
- quic/s2n-quic-platform/src/message/mmsg.rs+1-1
- quic/s2n-quic-platform/src/message/msg.rs+1-1
- quic/s2n-quic-platform/src/message/simple.rs+1-1
- quic/s2n-quic-rustls/src/session.rs+1-1
- quic/s2n-quic-transport/src/ack/tests/environment.rs+1-1
- quic/s2n-quic-transport/src/contexts/testing.rs+1-1
- quic/s2n-quic-transport/src/endpoint/config.rs+1-1
- quic/s2n-quic-transport/src/endpoint/mod.rs+2-2
- quic/s2n-quic-transport/src/path/manager.rs+1-1
- quic/s2n-quic-transport/src/stream/api.rs+6-6
- quic/s2n-quic-transport/src/sync/data_sender/buffer.rs+1-1
- quic/s2n-quic-transport/src/sync/data_sender/transmissions.rs+1-1
- quic/s2n-quic/src/client/providers.rs+1-1
- quic/s2n-quic/src/server/providers.rs+1-1
- quic/s2n-quic/src/stream/receive.rs+1-1
0 commit comments