- Gave
JsonLinesIter
new()
,get_ref()
,get_mut()
, andinto_inner()
methods
- Replaced
futures
andtokio-stream
dependencies withfutures-core
andfutures-sink
. This is more lightweight and should fix a problem with theSink
andStream
traits not being hyperlinked on docs.rs. - Increased MSRV to 1.74
- Added
asynchronous
category to crate metadata - Increased MSRV to 1.70
- Removed the implicit features for the optional dependencies that comprise the
async
feature - Remove library installation instructions from README
- Derive
Clone
,Eq
, andPartialEq
forJsonLinesReader
,JsonLinesWriter
,JsonLinesIter
,AsyncJsonLinesReader
,AsyncJsonLinesWriter
, andJsonLinesSink
- Added tokio-based asynchronous functionality:
AsyncJsonLinesReader
AsyncJsonLinesWriter
AsyncBufReadJsonLines
extension traitAsyncWriteJsonLines
extension trait
- Renamed
JsonLinesReader::iter()
toread_all()
- Renamed
Iter
toJsonLinesIter
, and renamedJsonLinesIter
toJsonLinesFileIter
- Gave
JsonLinesReader
andJsonLinesWriter
newget_ref()
andget_mut()
methods
Initial release