diff options
author | 2022-05-23 00:50:42 +0100 | |
---|---|---|
committer | 2022-05-23 11:56:09 +0100 | |
commit | b1c2eeb2fbd3f38cd72dee3b32ed77ec02eb829d (patch) | |
tree | 3bde51a79c4d5db25fa6318e490bfaa09da50430 | |
parent | ecd559540ead2684892405da12d75994470455d7 (diff) | |
download | quiche-b1c2eeb2fbd3f38cd72dee3b32ed77ec02eb829d.tar.gz quiche-b1c2eeb2fbd3f38cd72dee3b32ed77ec02eb829d.tar.zst quiche-b1c2eeb2fbd3f38cd72dee3b32ed77ec02eb829d.zip |
qlog: release 0.7
Changes include:
* Align qlog data model with draft-ietf-quic-qlog-quic-events-01 and
draft-ietf-quic-qlog-h3-events-01
* Make all qlog streamer serializer event writes atomic. QUIC packet
events no longer lock the serializer.
* New method `add_event_data_now()` added to the streaming serializer.
-rw-r--r-- | qlog/Cargo.toml | 2 | ||||
-rw-r--r-- | quiche/Cargo.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/qlog/Cargo.toml b/qlog/Cargo.toml index d143c6f4..499daf6b 100644 --- a/qlog/Cargo.toml +++ b/qlog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qlog" -version = "0.6.0" +version = "0.7.0" authors = ["Lucas Pardue <lucaspardue.24.7@gmail.com>"] edition = "2018" description = "qlog data model for QUIC and HTTP/3" diff --git a/quiche/Cargo.toml b/quiche/Cargo.toml index 0e6638fb..e98585fa 100644 --- a/quiche/Cargo.toml +++ b/quiche/Cargo.toml @@ -61,7 +61,7 @@ lazy_static = "1" octets = { version = "0.1", path = "../octets" } boring = { version = "2.0.0", optional = true } foreign-types-shared = { version = "0.3.0", optional = true } -qlog = { version = "0.6", path = "../qlog", optional = true } +qlog = { version = "0.7", path = "../qlog", optional = true } sfv = { version = "0.9", optional = true } [target."cfg(windows)".dependencies] |