summaryrefslogtreecommitdiffstats
path: root/third_party/rust/tokio-io/CHANGELOG.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
commit2aa4a82499d4becd2284cdb482213d541b8804dd (patch)
treeb80bf8bf13c3766139fbacc530efd0dd9d54394c /third_party/rust/tokio-io/CHANGELOG.md
parentInitial commit. (diff)
downloadfirefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz
firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/rust/tokio-io/CHANGELOG.md')
-rw-r--r--third_party/rust/tokio-io/CHANGELOG.md40
1 files changed, 40 insertions, 0 deletions
diff --git a/third_party/rust/tokio-io/CHANGELOG.md b/third_party/rust/tokio-io/CHANGELOG.md
new file mode 100644
index 0000000000..012c96a942
--- /dev/null
+++ b/third_party/rust/tokio-io/CHANGELOG.md
@@ -0,0 +1,40 @@
+# 0.1.7 (June 13, 2018)
+
+* Move `codec::{Encode, Decode, Framed*}` into `tokio-codec` (#353)
+
+# 0.1.6 (March 09, 2018)
+
+* Add native endian builder fn to length_delimited (#144)
+* Add AsyncRead::poll_read, AsyncWrite::poll_write (#170)
+
+# 0.1.5 (February 07, 2018)
+
+* Fix bug in `BytesCodec` and `LinesCodec`.
+* Performance improvement to `split`.
+
+# 0.1.4 (November 10, 2017)
+
+* Use `FrameTooBig` as length delimited error type (#70).
+* Provide `Bytes` and `Lines` codecs (#78).
+* Provide `AllowStdIo` wrapper (#76).
+
+# 0.1.3 (August 14, 2017)
+
+* Fix bug involving zero sized writes in copy helper (#57).
+* Add get / set accessors for length delimited max frame length setting. (#65).
+* Add `Framed::into_parts_and_codec` (#59).
+
+# 0.1.2 (May 23, 2017)
+
+* Add `from_parts` and `into_parts` to the framing combinators.
+* Support passing an initialized buffer to the framing combinators.
+* Add `length_adjustment` support to length delimited encoding (#48).
+
+# 0.1.1 (March 22, 2017)
+
+* Add some omitted `Self: Sized` bounds.
+* Add missing "inner" fns.
+
+# 0.1.0 (March 15, 2017)
+
+* Initial release