Skip to content

Commit

Permalink
Merge branch 'main' into features/loop-contracts-annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
qinheping authored Oct 14, 2024
2 parents f008223 + 722b424 commit 8b90842
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
28 changes: 14 additions & 14 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,9 @@ dependencies = [

[[package]]
name = "cc"
version = "1.1.28"
version = "1.1.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e80e3b6a3ab07840e1cae9b0666a63970dc28e8ed5ffbcdacbfc760c281bfc1"
checksum = "b16803a61b81d9eabb7eae2588776c4c1e584b738ede45fdbb4c972cec1e9945"
dependencies = [
"shlex",
]
Expand Down Expand Up @@ -252,19 +252,19 @@ dependencies = [

[[package]]
name = "clap"
version = "4.5.19"
version = "4.5.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7be5744db7978a28d9df86a214130d106a89ce49644cbc4e3f0c22c3fba30615"
checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8"
dependencies = [
"clap_builder",
"clap_derive",
]

[[package]]
name = "clap_builder"
version = "4.5.19"
version = "4.5.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a5fbc17d3ef8278f55b282b2a2e75ae6f6c7d4bb70ed3d0382375104bfafdb4b"
checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54"
dependencies = [
"anstream",
"anstyle",
Expand Down Expand Up @@ -1098,9 +1098,9 @@ dependencies = [

[[package]]
name = "pathdiff"
version = "0.2.1"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
checksum = "d61c5ce1153ab5b689d0c074c4e7fc613e942dfb7dd9eea5ab202d2ad91fe361"

[[package]]
name = "petgraph"
Expand Down Expand Up @@ -1195,9 +1195,9 @@ dependencies = [

[[package]]
name = "proc-macro2"
version = "1.0.86"
version = "1.0.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
checksum = "b3e4daa0dcf6feba26f985457cdf104d4b4256fc5a09547140f3631bb076b19a"
dependencies = [
"unicode-ident",
]
Expand Down Expand Up @@ -1827,9 +1827,9 @@ dependencies = [

[[package]]
name = "tree-sitter"
version = "0.23.0"
version = "0.23.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "20f4cd3642c47a85052a887d86704f4eac272969f61b686bdd3f772122aabaff"
checksum = "0203df02a3b6dd63575cc1d6e609edc2181c9a11867a271b25cfd2abff3ec5ca"
dependencies = [
"cc",
"regex",
Expand All @@ -1839,9 +1839,9 @@ dependencies = [

[[package]]
name = "tree-sitter-language"
version = "0.1.0"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2545046bd1473dac6c626659cc2567c6c0ff302fc8b84a56c4243378276f7f57"
checksum = "e8ddffe35a0e5eeeadf13ff7350af564c6e73993a24db62caee1822b185c2600"

[[package]]
name = "tree-sitter-rust"
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# SPDX-License-Identifier: Apache-2.0 OR MIT

[toolchain]
channel = "nightly-2024-10-07"
channel = "nightly-2024-10-09"
components = ["llvm-tools", "rustc-dev", "rust-src", "rustfmt"]
2 changes: 1 addition & 1 deletion tests/perf/s2n-quic
Submodule s2n-quic updated 44 files
+3 −4 .github/workflows/ci.yml
+1 −1 common/s2n-codec/src/decoder/value.rs
+3 −3 common/s2n-codec/src/zerocopy.rs
+20 −8 dc/s2n-quic-dc/src/path/secret/map.rs
+5 −2 dc/s2n-quic-dc/src/stream/endpoint.rs
+5 −2 dc/s2n-quic-dc/src/stream/send/state.rs
+10 −2 dc/wireshark/build.rs
+24 −10 dc/wireshark/src/plugin.rs
+4 −4 dc/wireshark/src/wireshark.rs
+98 −16 dc/wireshark/xtask/src/main.rs
+69 −4 quic/s2n-quic-core/src/dc.rs
+4 −0 quic/s2n-quic-core/src/dc/disabled.rs
+13 −3 quic/s2n-quic-core/src/dc/testing.rs
+10 −0 quic/s2n-quic-core/src/dc/traits.rs
+1 −1 quic/s2n-quic-core/src/frame/ack.rs
+34 −9 quic/s2n-quic-core/src/path/mtu.rs
+41 −19 quic/s2n-quic-core/src/path/mtu/tests.rs
+1 −1 quic/s2n-quic-core/src/recovery/congestion_controller.rs
+2 −3 quic/s2n-quic-core/src/transport/parameters/mod.rs
+2 −2 quic/s2n-quic-qns/Cargo.toml
+4 −4 quic/s2n-quic-qns/src/xdp.rs
+5 −0 quic/s2n-quic-transport/src/dc/manager.rs
+5 −0 ...ort/src/dc/manager/snapshots/quic__s2n-quic-transport__src__dc__manager__tests__events__on_mtu_updated.snap
+10 −0 quic/s2n-quic-transport/src/dc/manager/tests.rs
+29 −17 quic/s2n-quic-transport/src/recovery/manager.rs
+6 −0 ...-quic-transport__src__recovery__manager__tests__events__detect_and_remove_lost_packets_early_mtu_probe.snap
+7 −0 ...2n-quic-transport__src__recovery__manager__tests__events__process_new_acked_packets_call_on_mtu_update.snap
+150 −1 quic/s2n-quic-transport/src/recovery/manager/tests.rs
+4 −0 quic/s2n-quic-transport/src/space/application.rs
+2 −0 quic/s2n-quic-transport/src/space/handshake.rs
+2 −0 quic/s2n-quic-transport/src/space/initial.rs
+8 −7 quic/s2n-quic/src/provider/address_token/default.rs
+20 −9 quic/s2n-quic/src/stream/send.rs
+2 −2 tools/xdp/ebpf/Cargo.toml
+1 −1 tools/xdp/ebpf/rust-toolchain.toml
+1 −1 tools/xdp/ebpf/src/main.rs
+1 −1 tools/xdp/rust-toolchain
+7 −1 tools/xdp/s2n-quic-xdp/Cargo.toml
+2 −2 tools/xdp/s2n-quic-xdp/src/bpf/s2n-quic-xdp-bpfeb-trace.ebpf
+2 −2 tools/xdp/s2n-quic-xdp/src/bpf/s2n-quic-xdp-bpfeb.ebpf
+2 −2 tools/xdp/s2n-quic-xdp/src/bpf/s2n-quic-xdp-bpfel-trace.ebpf
+2 −2 tools/xdp/s2n-quic-xdp/src/bpf/s2n-quic-xdp-bpfel.ebpf
+2 −2 tools/xdp/tester/Cargo.toml
+4 −4 tools/xdp/tester/src/main.rs

0 comments on commit 8b90842

Please sign in to comment.