From 1d00d47b329c0e8f647b747d3dbd9dcb52eeaadf Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 8 Jan 2024 10:56:52 +1100 Subject: [PATCH] io: Add Changelog Done in preparation for an initial v0.1.0 release of the new `io` crate. Add a changelog file with a brief description of whats in the initial release. --- io/CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 io/CHANGELOG.md diff --git a/io/CHANGELOG.md b/io/CHANGELOG.md new file mode 100644 index 00000000..af90b40d --- /dev/null +++ b/io/CHANGELOG.md @@ -0,0 +1,15 @@ +# 0.1 - Initial Release - 2023-01-18 + +Create the `io` crate, add basic I/O traits, types, and implementations. + +Traits: + +- `Read` +- `BufRead` +- `Write` + +Types: + +- `Take` +- `Cursor` +- `Sink`