Unreleased - ReleaseDate
0.6.20 - 2024-09-25
- Dependency update
0.6.19 - 2024-09-24
- Add
Located::reset_to_start
for parsing encoded graphs with start-relative pointers
0.6.18 - 2024-07-31
0.6.17 - 2024-07-31
- Make
Checkpoint
s comparable
0.6.16 - 2024-07-25
0.6.15 - 2024-07-22
- Deprecated
Parser::recognize
in favor ofParser::take
- Deprecated
Parser::with_recognized
in favor ofParser::taken
- Renamed
Parser::recognize
toParser::take
to be consistent with othertake
parsers - Renamed
Parser::with_recognized
toParser::with_taken
to be consistent with othertake
parsers
0.6.14 - 2024-07-19
- Removed unused
I: Clone
bound onParser::parse
0.6.13 - 2024-06-06
- Expand on error reporting
0.6.12 - 2024-06-06
- Improve compilation errors when using non-parsers with
seq!
struct syntax
0.6.11 - 2024-06-03
- Remove
AsBytes
bounds, unblocking parsing frames of binary input
0.6.10 - 2024-06-03
- Extend
seq!
to constructing enum variants
0.6.9 - 2024-05-28
- Bump MSRV to 1.65
- Add
Debug
impls forstream::Stateful
andstream::Recoverable
0.6.8 - 2024-05-06
- Support
&mut [impl Parser]
withinalt
0.6.7 - 2024-04-26
- Improve debug traces when Input wrapper types are used
0.6.6 - 2024-04-11
- Add impl
ErrorConvert
forContextError
so it can be used with bit parsing
0.6.5 - 2024-02-29
- Deprecated
escaped
in favor oftake_escaped
(rename)
- Fix some bugs in concrete signatures
- Explain what "Partial version" means
- When discussing the signature, highlight the most relevant trait for
input
0.6.4 - 2024-02-29
- Provide examples of concrete signatures
0.6.3 - 2024-02-28
- Make
take_until("")
consistent betweensimd
or not, with or without empty buffer
- Clarify generic and value parameters
- Cross reference
*until
and*till
parsers - (tutorial) Step through parts more slowly
0.6.2 - 2024-02-19
0.6.1 - 2024-02-14
- Fix regression where
dec_int
/dec_uint
didn't parse0
0.6.0 - 2024-02-13
- Ensure you've migrated to 0.5
- Upgrade to latest 0.5 release
- Resolve all deprecations
- Upgrade to 0.6
- See "Breaking Changes" for help with any remaining issues
- Use simd for
till_line_ending
- Added
isize
support fordec_int
- Added
usize
support fordec_uint
- Prevent panic from slicing a
&str
on a non-UTF8 boundary - Removed unused trait bounds
- (debug) Improved traces for
char
,u8
literal parsers by usingliteral
instead ofone_of
- (debug) Improved traces by having
literal
output the literal
Most common breaking changes:
Stream::reset
now accepts a checkpoint by reference, rather than by valueParserError::append
now takes astart: &Checkpoint
parameter for capturing the start of the current parse operationAddContext::add_context
now takes astart: &Checkpoint
parameter for capturing the start of the current parse operationFindSlice::find_slice
now returns a rangeCompareResult::Ok
now carries ausize
Checkpoint
gained a generic parameter, limiting it to the stream type it came from
All others
- Deprecated functionality was removed
dec_int
/dec_uint
continue don't stop capturing tokens once the data type is saturated- Trait bounds changed for
char
,u8
literal parsers literal
requires the tag to implDebug
- Asserts in release build now
Cut
rather thanBacktrack
- Added "no progress" asserts to repeating combinators to prevent infinite loops
- Added "min is lower than max" asserts to ranged parsers
0.5.40 - 2024-02-12
- Add support to
take_until
forchar
needles on&[u8]
haystacks
0.5.39 - 2024-02-06
- Be consistent about inlining
slice_len
0.5.38 - 2024-02-06
- Deprecate
token::tag
fortoken::literal
- Deprecate
binary::bits::tag
forbinary::bits::pattern
- Allow a byte (
u8
) to be a tag
- Clarify name of
token::tag
astoken::literal
- Clarify name of
binary::bits::tag
asbinary::bits::pattern
0.5.37 - 2024-02-02
- Initial support for error recovery behind
unstable-recover
feature
0.5.36 - 2024-01-31
- Deprecate
fold_repeat
in favor ofrepeat().fold()
- Add
repeat().fold()
0.5.35 - 2024-01-26
- Deprecate
success(value)
in favor ofempty.value(value)
- Deprecated
winnow::trace::trace
in favor of the more centrally locatedwinnow::combinator::trace
- Deprecated
take_until0
/take_until1
in favor oftake_until
- Deprecated
repeat_till0
in favor ofrepeat_till
- Deprecated
not_line_ending
in favor oftill_line_ending
- Add more general
empty
combinator - Added
take_until
that can handle any range of tokens to consume - Added
repeat_till
that can handle any range of parsers to repeat
- Made it easier to discover
cut_err
and how to use it - Move
trace
documentation into the tutorial
0.5.34 - 2024-01-10
- Don't require
Stateful
sState
to be clone (a leftover from pre&mut
input)
0.5.33 - 2024-01-06
- Support
char
withtag
parser which is faster than usingone_of
0.5.32 - 2024-01-03
- Parse
+
/-
inf/nan withascii::float
0.5.31 - 2023-12-27
- Help the optimizer trim unused instructions in
any
when parsing a complete buffer
0.5.30 - 2023-12-18
- Add
Parser::default_value
0.5.29 - 2023-12-18
- New
combinator::seq!
for easier initialization of structs/tuples
0.5.28 - 2023-12-11
- Deprecate
length_data
in favor oflength_take
- Deprecate
length_value
in favor oflength_and_then
- Deprecate
length_count
in favor oflength_repeat
0.5.27 - 2023-12-11
- Consistently support
FnMut
for predicates, not justFn
- Improve
nom
migration experience
0.5.26 - 2023-12-07
- Add
nom
migration guide
0.5.25 - 2023-12-05
- Correctly point to error location in
InputError
sDisplay
for single-line input
0.5.24 - 2023-12-05
- Support
Accumulate
forBTreeSet
andHashSet
0.5.23 - 2023-12-04
- Add more patterns for
token::take_until[01]
0.5.22 - 2023-12-04
- Optimize
take_until*
when parsing&str
0.5.21 - 2023-12-04
- Add
take_till
ranged parser
- Deprecated
take_till0
,take_till1
in favor oftake_till
0.5.20 - 2023-12-04
- Add
Caseless
to make it easier to add case insensitivity to any parser.
- Deprecated
tag_no_case
in favor oftag(Caseless(...))
0.5.19 - 2023-11-03
- Add
separated
combiantor
- Deprecated
separated0
andseparated1
in favor ofseparated
0.5.18 - 2023-10-30
- Support
Accumulate
forHashMap
with custom hashers
- Deprecated
Uint
impls for signed numbers
0.5.17 - 2023-10-13
- Provide lexer/parser example with details on handling of custom tokens
0.5.16 - 2023-10-06
- Correctly calculate
offset_from
for non-byte slices
0.5.15 - 2023-08-24
- Improve build times with
debug
when closures are used
0.5.14 - 2023-08-17
- Speed up
take_until
whensimd
is enabled
0.5.13 - 2023-08-17
ErrMode
inlining for improving gitoxide
0.5.12 - 2023-08-16
- Try inlining more wrapper functions
0.5.11 - 2023-08-15
- Impl
Clone
forContextError
0.5.10 - 2023-08-11
- Impl
Display
forStrContext
0.5.9 - 2023-08-11
- Improve rendering of
ErrorKind
in other errors
0.5.8 - 2023-08-11
- Add
TreeError::into_owned
- impl
Error
forTreeError
- Add back in
VerboseError
to help with migrations
0.5.7 - 2023-08-10
- Support
Display
forTreeError
0.5.6 - 2023-08-10
- New
TreeError
for showing full error path in tests InputError::map_input
for making input types nicer for test failures
0.5.5 - 2023-08-10
alt([...])
fails,or
the errors together, likealt((...))
0.5.4 - 2023-08-05
- Update dependencies
0.5.3 - 2023-08-01
- implement
AddContext
forErrMode
for easier direct construction
0.5.2 - 2023-07-30
- Allow
[P; N]
arrays withinalt
0.5.1 - 2023-07-24
- Added
ParseError::into_inner
0.5.0 - 2023-07-13
Preparation: 0. Upgrade to the latest 0.4 release
- Process all deprecation warnings
- Replace not-quite deprecated items:
- Replace
winnow::branch
withwinnow::combinator
- Replace
winnow::bytes
withwinnow::token
- Replace
Offset::offset_to
withOffset::offset_from
- Replace
ParseError
withParserError
- Replace
ContextError
withAddContext
- Replace
Error
withInputError
- Ensure parsers return
impl Parser
overimpl FnMut
to reduce the size of the upgrade commit since theFnMut
signature will change - When creating errors within your parser,s switch from doing so directly to using
ErrMode
s trait impls to make the code more independent of the current error type - Instrument your parser with
winnow::trace::trace
to make it easier to debug problems on upgrade - Merge the above
For the actual upgrade, there are two approaches that can be mixed.
Switch to new, imperative APIs
- Upgrade to 0.5
- Replace
IResult<I, O, E>
withPResult<O, E>
(E
is still defaulted but toContextError
) - Replace your parsers
I
parameter with&mut I
- For
fn(&mut &str) -> PResult<&str>
, a lifetime will be needed:fn<'i>(&mut &'i str) -> PResult<&'i str>
- For embedded closures,
move |input|
might need to be updated tomove |input: &mut _|
- Update imperative parsers from expecting
parse_next
to return(input, output)
tooutput
- When matching against
ErrMode::Backtrace
, you might need toinput.reset(checkpoint)
to revert the parser state
- Update error reporting for new error type returned from
Parser::parse
Maintain pure-functional APIs
- Upgrade to 0.5
- Switch to new names for the old APIs
- Replace
Parser::parse_next
withParser::parse_peek
- Replace
Stream::next_token
withStream::peek_token
- Replace
Stream::next_slice
withStream::peek_slice
- Wrap calls to
FnMut(I) -> IResult<I, O, E>
parsers withwinnow::unpeek
- Update error reporting for new error type returned from
Parser::parse
Example: toml_edit
:
Example: winnow
:
- Maintaining pure-functional API
- Switch to new, imperative APIs from pure-functional API
Example: chumsky
s json bench:
Parser::parse_next
(and theimpl Parser for FnMut
) now take&mut I
and returnPResult
- Changed error type for
Parser::parse
to allow quality errors without requiringE
to carryI
- Removed
impl ContainsToken for &str
(e.g.one_of("abc"
) since it takes 5x more time leading to easily avoidable slow downs- Instead use
['a', 'b', 'c']
or'a'..='c'
(see08b3e57
for examples)
- Instead use
- Changed
ParserError
andFromExternalError
from acceptingI
to&I
- Renamed
ParseError
toParserError
- Renamed
ContextError
toAddContext
- Renamed
Error
toInputError
- Removed
Offset::offset_to
in favor ofOffset_offset_from
- Removed hack from
trace
that allowed parsers to changeinput
to point to a different string (this wasn't present in other parsers relying onOffset::offset_from
) - Removed some
Offset
bounds, requiring changinga.offset_from(b)
toa.offset_from(&b)
- Renamed
bytes
totoken
to clarify its scope - Renamed
character
toascii
to make it agnostic ofchar
tokens - Moved all binary-related parsing combinators into the
binary
modulebits
->binary::bits
number
multi::length_*
- Moved all generic combinators into
combinator
sequence
branch
multi
- Deprecated parsers were removed
Stream
trait changedStream::raw
addedStream::next_token
renamed toStream::peek_token
Stream::next_slice
renamed toStream::peek_slice
- New
Stream::next_token
andStream::next_slice
added - Added
Stream::finish
andStream::peek_finish
Stream::Checkpoint
,Stream::checkpoint
, andStream::reset
addedOffset<Stream::Checkpoint>
is a new super trait
- Added
ContextError
, a lightweightParserError
that supportsAddContext
(default forPResult
) - Added
Stream::finish
andStream::peek_finish
for making it easier to capture all remaining content - Added
ErrMode::into_inner
for unifyingCut
andBacktrack
- Allow
ErrorKind
as aParserError
- Correctly show
BStr
andByte
sDebug
impl, rather than&[u8]
- Removed
impl ContainsToken for &str
(e.g.one_of("abc"
) since it takes 5x more time leading to easily avoidable slow downs - Walk the
Stream
imperatively with&mut I
rather than requiring returning the updating error location- i.e. switched parsing from
parser(I) -> (I, O)
toparser(&mut I) -> O
- Gains are around 10% in select benchmarks
- It is believed that this reduced the size of the return type, allowing values to be returned through registers more often (as opposed to the stack), and this gain only shows up in parsers that return large data types, like format preserving parsers
- i.e. switched parsing from
0.4.9 - 2023-07-08
- Add aliases for renamed APIs in v0.5
error::AddContext
which wrapserror::ContextError
error::ParserError
which wrapserror::ParseError
error::InputError
which wrapserror::Error
0.4.8 - 2023-07-06
- Add aliases for renamed APIs in v0.5
Parser::parse_peek
which wrapsParser::parse_next
Stream::peek_token
which wrapsStream::next_token
Stream::peek_slice
which wrapsStream::next_slice
Offset::offset_from
which wrapsOffset::offset_to
- Add
unpeek
which is a no-op function in prep for v0.5
- Allow
ascii::escaped_transform
oncore
- Update
ascii::float
to correct parseinfinity
- Update special topics to link out to relevant parsers they re-implement
0.4.7 - 2023-06-14
- Resolve a performance regression in
winnow::ascii:
parsers (any that usetake_while
)
0.4.6 - 2023-05-02
- Deprecated
count
,repeat0
,repeat1
in favor ofrepeat
- Deprecated
take_while0
,take_while1
in favor oftake_while
- Deprecated
fold_repeat0
,fold_repeat1
in favor offold_repeat
0.4.5 - 2023-05-01
- Improve partial-parsing performance by ~15%
0.4.4 - 2023-04-28
- Improve color control for
debug
feature
0.4.3 - 2023-04-28
- Reduce risk of breaking when using glob imports
0.4.2 - 2023-04-28
- MSRV raised to 1.64.0
bits
,bytes
,character
,number
,sequence
,branch
, andmulti
modules are deprecatedParser::map_res
is deprecated
- Renamed
Parser::map_res
toParser::try_map
for consistency - Renamed
bytes
totoken
to clarify its scope - Renamed
character
toascii
to make it agnostic ofchar
tokens - Moved all binary-related parsing combinators into the
binary
modulebits
->binary::bits
number
multi::length_*
- Moved all generic combinators into
combinator
sequence
branch
multi
- Renamed the
*many*
combiantors as*repeat*
to make the code read more clearly - Generalized
repeat_m_n
asrepeat
which takes any range type - Generalzied
fold_repeat_m_n
asfold_repeat
which takes any range type - Generalized
take_while_m_n
astake_while
which takes any range type
- Start "Performance" special topic
0.4.1 - 2023-03-24
- Allow array references and char arrays for
ContainsToken
- Revert a regression in
space0
,space1
,multiscape0
,multispace1
0.4.0 - 2023-03-18
Breaking:
- All
winnow
parsers now returnimpl Parser
, rather thanimpl FnMut
winnow::prelude::Parser
is now named- Some infinite loop, overflows, and bounds errors were changed to asserts
ErrorKind
was greatly simplified- Some trait bounds and generic parameters changed
- Deprecated APIs were removed
Other
- Deprecated
FinishIResult
- Improved type inference, especially for
""
,''
parsers winnow::prelude
now allows named access toParser
Parser::parse
added as a replacement forFinishIResult::finish
escape
: Remove extraneous bounds checks
- Cleaned up the code so it better serves as examples for user-written parsers
0.3.6 - 2023-03-14
error::Error
now implementsCopy
,Clone
0.3.5 - 2023-03-06
- Fix
core
andalloc
support
0.3.4 - 2023-03-01
- Ensure
Partial
can be toggled to complete.
0.3.3 - 2023-02-25
- Fix tutorial headers
0.3.2 - 2023-02-24
- Improve the partial parsing example
0.3.1 - 2023-02-24
- Fix bounds on
Parser::flat_map
so that it works with closures
0.3.0 - 2023-02-22
v0.3.0 changes are relative to nom v7.1.3
Versioning starts at v0.3.0 due to the historical nature of how winnow
was
forked from nom
. See also the
nom8
changelog.
- Update all references from
nom
towinnow
- Replace
winnow::Err::Error
withwinnow::Err::Backtrack
winnow::Err::Fatal
withwinnow::Err::Cut
winnow::Input*
withwinnow::stream::Stream
E::append
witherr.append
E::add_context
witherr.add_context
- Resolve remaining compile errors
- Resolve deprecations as described by them
Examples:
Parser::into
in favor ofParser::output_into
andParser::err_into
(#48)- Combinator structs returned by
Parser
were moved fromwinnow
towinnow::combinator
module (#4) - Tweaks were made to what input traits are needed for various types / parsers
- Removed
pub use bits::*;
into root namespace (#52) - Moved error types and traits into the
winnnow::error
module (#73, #117) winnow::error::Err
was renamed toErrMode
(#117)Error
variant was renamed toBacktrack
Fatal
variant was renamed toCut
winnow::error::ParserError
function parameter order has changed (#92)winnow::error::Error
'scode
field was renamed tokind
(#92)- Removed support for
(I, ErrorKind)
errors in favor ofwinnow::error::Error
(#92, #117) winnow::error::ErrorKind
for infinite loops, like inwinnow::multi
, was changed toErrorKind::Assert
(#146)winnow::multi
parsers willdebug_assert
by default when encountering infinite loops (#146)- Removed
error::error_to_u32
(#54) - Changed all parsers to use
FnMut
(#152, #164) - Moved input traits from
winnow
towinnow::stream
(#13, #142) - Merged many input traits into
winnow::stream::Stream
(#105, #107, #142, #155, #157)InputIter::Iter
is nowStream::IterOffsets
InputIter::iter_indices
is nowStream::iter_offsets
InputIter::position
is nowStream::offset_for
InputIter::slice_index
is nowStream::offset_at
- Renamed
winnow::stream::InputLen
toSliceLen
(#105) - Renamed
winnow::stream::FindSubstring
toFindSlice
(#105) - Renamed
winnow::stream::FindTokens
toContainsToken
(#105) - Renamed
winnow::stream::ParseTo
toParseSlice
(#136) - Renamed
winnow::stream::Offset::offset
tooffset_to
(#105) - Split
AsBytes
intoAsBytes
andAsBStr
(#134) - Removed seemingly unused
winnow::stream
trait impls (#105) - Removed
winnow::lib
from API (#118)
MSRV was raised to 1.60 (#158, #160, #167)
memchr
is no longer used by default; opt-in with the simd
feature
character::is_*
functions in favor ofAsChar
(#25)winnow::*::complete::*
andwinnow::*::streaming::*
parsers in favor of the merged ones (#28)- Unsigned parsers like
u8
were merge intowinnow::character::dec_uint
(#59) - Unsigned parsers like
i8
were merge intowinnow::character::dec_int
(#59) winnow::number::*::hex_u32
was replaced withwinnow::character::hex_uint
(#59)winnow::bytes::*::take_till
was renamed towinnow::bytes::take_till0
(#132)winnow::bytes::*::take_while
was renamed towinnow::bytes::take_while0
(#132)winnow::bytes::*::take_until
was renamed towinnow::bytes::take_until0
(#132)winnow::multi::*::many_till
was renamed towinnow::multi::many_till0
(#132)winnow::multi::*::separated_list0
was renamed towinnow::multi::separated0
(#140)winnow::multi::*::separated_list1
was renamed towinnow::multi::separated1
(#140)winnow::bytes::*::escaped
was moved towinnow::character::escaped
(#108)winnow::bytes::*::escaped_transform
was moved towinnow::character::escaped_transform
(#108)
- Unsigned parsers like
dbg_dmp
in favor of-features debug
(#173)all_consuming
in favor ofeof
/FinishIResult::finish
(#112)- Freestanding parsers that were in both
winnow::combinator
toParser
trait (#37)map
, seeParser::map
flat_map
, seeParser::flat_map
map_parser
, seeParser::and_then
- Freestanding parsers that were moved from
winnow::combinator
toParser
(#40)map_res
asParser::map_res
map_opt
asParser::verify_map
(#145)complete
asParser::complete_err
(#168)verify
asParser::verify
value
asParser::value
recognize
asParser::recognize
consumed
asParser::with_recognized
(note: output order swapped)context
asParser::context
many0_count
,many1_count
in favor ofmany0
andmany1
(#127)- Freestanding
into
in favor ofParser::output_into
andParser::err_into
(#37, #48) winnow::combinator::cut
in favor ofwinnow::combiantor::cut_err
(#117)Parser::parse
in favor ofParser::parse_next
(#76)is_a
withtake_while1
thanks to newFindToken
impls (#44)is_not
withtake_till1
thanks to newFindToken
impls (#44)satisfy
withone_of
thanks to newFindToken
impls (#44)Parser::and
,Parser::or
in favor ofimpl Parser for <tuples>
andalt
(#37)tuple
,pair
parser in favor of using tuples (#42, #46)ParseError::from_char
in favor ofContextError
(#45)error::make_error
anderror::append_error
(#55)error::Finish
in favor ofFinishIResult
(#21)error::error_position!
anderror::error_mode_position!
(#92)
- Provide a
winnow::prelude
(#21) winnow::Stateful
for attaching state to the input type (#58)winnow::Located
for tracking the input's location, along withParser::span
andParser::with_span
to capture it (#61)- Improved debug experience with
- New
winnow::trace::trace
combinator, used by allwinnow
parsers (#156, #165, #176) Bytes
andBStr
new types with improvedDebug
(#144, #147, #149, #177)
- New
- Merged streaming/complete parsers, opting in to streaming with the
Partial<I>
stream type (#28, #142, #166, #170, #172)- Merged ASCII float parsers moved to
character
and made generic (#38, #59) - Moved
one_of
,none_of
fromcharacter
tobytes
as they are more general (#44) - Moved
character::anychar
tobytes::any
with a more generic return type (#44)
- Merged ASCII float parsers moved to
- Allow generic context in errors (#49)
impl Parser for <tuples>
as an alternative totuple(())
(#42)impl Parser for (char|u8|&str|&[u8])
as an alternative toone_of
,char
, andtag
(#47, #50, #171)Parser::by_ref
to allow using&mut impl Parser
as aParser
(#34, #41)- New combinators:
Parser::void
(#113)Parser::parse_to
(#136)winnow::combinator::todo
(#135)winnow::combinator::backtrack_err
(#117)winnow::branch::dispatch!
as amatch
-like alternative toalt
(#119)winnow::multi::separated_foldl1
(#140)winnow::multi::separated_foldr1
(#140)
- Add combinators directly to
Parser
:Parser::map_res
(#40)Parser::verify_map
(#40, #145)Parser::complete_err
(#40, #168)Parser::verify
(#40)Parser::value
(#40)Parser::with_recognized
(#40)Parser::context
(#40)
- Allow more containers to be used with
winnow::multi
parsers (#127) - Allow
u8
andchar
, ranges ofu8
andchar
, functions, and tuples of the prior whereverContainsToken
is accepted (#44, #105) - Generalize
take_while
,take_till
withContainsToken
trait (#44, #105) - Add
character::is_*
functions toAsChar
that were missing (#2) - Implement
Stream
for(I, usize)
, allowing more combinators to work with bit-streams (#153) - Treat all slices as input, regardless of token type (#111, rust-bakery/nom#1482)
FinishIResult::finish
for dropping theremainder
(#30)FindSlice
now also finds tokens, makingtake_until0
and friends more flexible (#105)- Implement
ParseError
andFromExternalError
forErrMode
, making it easier to create the right kind of error (#120, #124)
- Correctly count multi-byte
char
s fortake_while_m_n
(#130) - Change
fill
,iterator
,bits::bits
, andbits::bytes
from taking a function to taking aParser
(#10, #11, #120) - Allow byte arrays of any size (#14)
length_data
andlength_value
now auto-detect complete/streaming, before were streaming only (#28)Clarify
Offset::offset_to` with explicit assert (#109, rust-bakery/nom#1520)- Prefer
Into
overFrom
(#110, rust-bakery/nom#1460) - Use
ErrorConvert
inErrMode::convert
(#124)
- Use
memchr::memmem
onFindSlice
(#86, rust-bakery/nom#1375) - Use
Vec::with_capacity
forlength_count
(#87, rust-bakery/nom#1462)
- Pulled loose markdown into rustdoc (#1, #174, #183)
- Pull in the nominomicon (#185, rust-bakery/nom#1525)
- Pull examples into the "Special Topics" section (#175)
- Add
#[doc(alias)]
s for easier migration fromnom
,chumsky
, andcombine
(#178) - Made examples more interactive (#77, #175)
- Add example for
bits::tag
(#88, rust-bakery/nom#1501) - Special topics: improve identifier example (#90, rust-bakery/nom#1334)
- Now verified with miri (#143, #161)
nom 7.1.3 - 2023-01-15
- @Shadow53
- panic in
many
andcount
combinators when the output type is zero sized
nom 7.1.2 - 2023-01-01
- @joubs
- @Fyko
- @LoganDark
- @darnuria
- @jkugelman
- @barower
- @puzzlewolf
- @epage
- @cky
- @wolthom
- @w1ll-i-code
- documentation fixes
- tests fixes
- limit the initial capacity of the result vector of
many_m_n
to 64kiB - bits parser now accept
Parser
implementors instead of only functions
- implement
Tuple
parsing for the unit type as a special case - implement
ErrorConvert
on the unit type to make it usable as error type for bits parsers - bool parser for bits input
nom 7.1.1 - 2022-03-14
- @ThomasdenH
- @@SphinxKnight
- @irevoire
- @doehyunbaek
- @pxeger
- @punkeel
- @max-sixty
- @Xiretza
- @5c077m4n
- @erihsu
- @TheNeikos
- @LoganDark
- @nickelc
- @chotchki
- @ctrlcctrlv
- documentation fixes
- more examples
nom 7.1.0 - 2021-11-04
- @nickelc
- @Stargateur
- @NilsIrl
- @clonejo
- @Strytyp
- @schubart
- @jihchi
- @nipunn1313
- @Gungy2
- @Drumato
- @Alexhuszagh
- @Aehmlo
- @homersimpsons
- @dne
- @epage
- @saiintbrisson
- @pymongo
- documentation fixes
- Ci fixes
- the move to minimal-lexical for float parsing introduced bugs that cannot be resolved right now, so this version moves back to using the standard lib' parser. This is a performance regression*. If you have specific requirements around float parsing, you are strongly encouraged to use recognize_float and another library to convert to a f32 or f64
- alt now works with 1 element tuples
nom 7.0.0 - 2021-08-21
This release fixes dependency compilation issues and strengthen the minimum supported Rust version (MSRV) policy. This is also the first release without the macros that were used since nom's beginning.
- @djc
- @homersimpsons
- @lo48576
- @myrrlyn
- @RalXYZ
- @nickelc
- @cenodis
take_until1
combinator- more
to_owned
implementations fail
: a parser that always fail, useful as default condition in other combinators- text to number parsers: in the
character::streaming
andcharacter::complete
modules, there are parsers namedi8, u16, u32, u64, u128
andu8 ,u16, u32, u64, u128
that recognize decimal digits and directly convert to a number in the target size (checking for max int size)
- now that function combinators are the main way to write parsers, the old macro combinators are confusing newcomers. THey have been removed
- the
BitSlice
input type from bitvec has been moved into the nom-bitvec crate. nom does not depend on bitvec now - regex parsers have been moved into the nom-regex crate. nom does not depend on regex now
ErrorKind::PArseTo
was not needed anymore
- relax trait bounds
- some performance fixes
split_at_position*
functions should now be guaranteed panic free- the
lexical-core
crate used for float parsing has now been replaced withminimal-lexical
: the new crate is faster to compile, faster to parse, and has no dependencies
- infinite loop in
escaped
combinator many_m_n
now fails if min > max
nom 6.2.1 - 2021-06-23
This release was done thanks to the hard work of (by order of appearance in the commit list):
- @homersimpsons
- fix documentation building
nom 6.2.0 - 2021-02-15
This release was done thanks to the hard work of (by order of appearance in the commit list):
- @DavidKorczynski
- @homersimpsons
- @kornelski
- @lf-
- @lewisbelcher
- @ronan-d
- @weirane
- @heymind
- @marcianx
- @Nukesor
- nom is now regularly fuzzed through the OSSFuzz project
- lots of documentation fixes
- relax trait bounds
- workarounds for dependency issues with bitvec and memchr
nom 6.1.2 - 2021-02-15
- Fix cargo feature usage in previous release
nom 6.1.1 - 2021-02-15
This release was done thanks to the hard work of (by order of appearance in the commit list):
- @nickelc
- Fix dependenciy incompatibilities: Restrict the bitvec->funty dependency to <=1.1
nom 6.1.0 - 2021-01-23
This release was done thanks to the hard work of (by order of appearance in the commit list):
- @sachaarbonel
- @vallentin
- @Lucretiel
- @meiomorphism
- @jufajardini
- @neithernut
- @drwilco
- readme and documentation fixes
- rewrite of fold_many_m_n
- relax trait bounds on some parsers
- implement
std::error::Error
onVerboseError
nom 6.0.1 - 2020-11-24
This release was done thanks to the hard work of (by order of appearance in the commit list):
- @Leonqn
- @nickelc
- @toshokan
- @juchiast
- @shssoichiro
- @jlkiri
- @chifflier
- @fkloiber
- @Kaoet
- @Matthew Plant
ErrorConvert
implementation forVerboseError
- CI fixes
fold_many*
now acceptFnMut
for the accumulation function- relaxed input bounds on
length_count
- documentation fixes
- the
#[deprecated]
attribute was removed from traits because it does not compile anymore on nightly - bits and bytes combinators from the bits modules are now converted to use
FnMut
nom 6.0.0 - 2020-10-31
This release was done thanks to the hard work of (by order of appearance in the commit list):
- @chifflier
- @shepmaster
- @amerelo
- @razican
- @Palladinium
- @0ndorio
- Sebastian Zivota
- @keruspe
- @devonhollowood
- @parasyte
- @nnt0
- @AntoineCezar
- @GuillaumeGomez
- @eijebong
- @stadelmanma
- @sphynx
- @snawaz
- @fosskers
- @JamesHarrison
- @calebsander
- @jthornber
- @ahmedcharles
- @rljacobson
- @benkay86
- @georgeclaghorn
- @TianyiShi2001
- @shnewto
- @alfriadox
- @resistor
- @myrrlyn
- @chipsenkbeil
- @ruza-net
- @fanf2
- @jameysharp
- @FallenWarrior2k
- @jmg-duarte
- @ericseppanen
- @hbina
- Andreas Molzer
- @nickelc
- @bgourlie
This release is a more polished version of nom 5, that came with a focus on
function parsers, by relaxing the requirements: combinators will return a
impl FnMut
instead of impl Fn
, allowing closures that change their context,
and parsers can be any type now, as long as they implement the new Parser
trait.
That parser trait also comes with a few helper methods.
Error management was often a pain point, so a lot of work went into making it easier.
Now it integrates with std:error::Error
, the IResult::finish()
method allows you
to convert to a more usable type, the into
combinator can convert the error type
if there's a From
implementation, and there are more specific error traits like
ContextError
for the context
combinator, and FromExternalError
for map_res
.
While the VerboseError
type and its convert_error
function saw some changes,
not many features ill be added to it, instead you are encouraged to build the error
type that corresponds to your needs if you are building a language parser.
This version also integrates with the excellent bitvec crate for better bit level parsing. This part of nom was not great and a bit of a hack, so this will give better options for those parsers.
At last, documentation! There are now more code examples, functions and macros that require
specific cargo features are now clearly indicated, and there's a new recipes
module
containing example patterns.
- the minimal Rust version is now 1.44 (1.37 if building without the
alloc
orstd
features) - streaming parsers return the number of additional bytes they need, not the total. This was supposed to be the case everywhere, but some parsers were forgotten
- removed the
regexp_macros
cargo feature - the
context
combinator is not linked toParseError
anymore, instead it come with its ownContextError
trait Needed::Size
now contains aNonZeroUsize
, so we can reduce the structure's size by 8 bytes. When upgrading,Needed::Size(number)
can be replaced withNeeded::new(number)
- there is now a more general
Parser
trait, so parsers can be something else than a function. This trait also comes with combinator methods likemap
,flat_map
,or
. Since it is implemented onFn*
traits, it should not affect existing code too much - combinators that returned a
impl Fn
now return aimpl FnMut
to allow parser closures that capture some mutable value from the context separated_list
is nowseparated_list0
- removed the deprecated
methods
module - removed the deprecated
whitespace
module - the default error type is now a struct (
nom::error::Error
) instead of a tuple - the
FromExternalError
allows wrapping the error returned by the function in themap_res
combinator - renamed the
dbg!
macro to avoid conflicts withstd::dbg!
separated_list
now allows empty elements
- function version of regex parsers
fill
: attempts to fill the output slice passed as argumentsuccess
: returns a value without consuming the inputsatisfy
: checks a predicate over the next charactereof
function combinatorconsumed
: returns the produced value and the consumed inputlength_count
function combinatorinto
: converts a parser's output and error values ifFrom
implementations are availableIResult::finish()
: converts a parser's result toResult<(I, O), E>
by removing the distinction betweenError
andFailure
and panicking onIncomplete
- non macro versions of
u16
,i32
, etc, with configurable endianness is_newline
functionstd::error::Error
implementation for nom's error types- recipes section of the documentation, outlining common patterns in nom
- custom errors example
- bitstream parsing with the
BitSlice
type from the bitvec crate - native endianness parsers
- github actions for CI
- allows lexical-core 0.7
- number parsers are now generic over the input type
- stabilized the
alloc
feature convert_error
accepts a type that derefs to&str
- the JSON example now follows the spec better
- use
fold_many0c
in thefold_many0
macro
nom 5.1.1 - 2020-02-24
- @Alexhuszagh for float fixes
- @AlexanderEkdahl, @JoshOrndorff, @akitsu-sanae for docs fixes
- @ignatenkobrain: dependency update
- @derekdreery:
map
implementation for errors - @Lucretiel for docs fixes and compilation fixes
- adytzu2007: warning fixes
- @lo48576: error management fixes
- C symbols compilation errors due to old lexical-core version
Err
now has amap
function
- Make
error::context()
available withoutalloc
feature
nom 5.1.0 - 2020-01-07
- @Hywan, @nickmooney, @jplatte, @ngortheone, @ejmg, @SirWindfield, @demurgos, @spazm, @nyarly, @guedou, @adamnemecek, for docs fixes
- @Alxandr for error management bugfixes
- @Lucretiel for example fixes and optimizations
- @adytzu2007 for optimizations
- @audunhalland for utf8 fixes
- panic in
convert_error
compile_error
macro usage
std::error::Error
,std::fmt::Display
,Eq
,ToOwned
implementations for errors- inline attribute for
ToUsize
convert_error
optimizationalt
optimization
nom 5.0.1 - 2019-08-22
- @waywardmonkeys, @phaazon, @dalance for docs fixes
- @kali for
many0_m_n
fixes - @ia0 for macros fixes
many0_m_n
now supports the n=1 case- relaxed trait requirements in
cut
peek!
macro reimplementation- type inference in
value!
nom 5.0.0 - 2019-06-24
This version comes with a complete rewrite of nom internals to use functions as a base for parsers, instead of macros. Macros have been updated to use functions under the hood, so that most existing parsers will work directly or require minimal changes.
The CompleteByteSlice
and CompleteStr
input types were removed. To get different
behaviour related to streaming or complete input, there are different versions of some
parsers in different submodules, like nom::character::streaming::alpha0
and
nom::character::complete::alpha0
.
The verbose-errors
feature is gone, now the error type is decided through a generic
bound. To get equivalent behaviour to verbose-errors
, check out nom::error::VerboseError
- @lowenheim helped in refactoring and error management
- @Keruspe helped in refactoring and fixing tests
- @pingiun, @Songbird0, @jeremystucki, @BeatButton, @NamsooCho, @Waelwindows, @rbtcollins, @MarkMcCaskey for a lot of help in rewriting the documentation and adding code examples
- @GuillaumeGomez for documentation rewriting and checking
- @iosmanthus for bug fixes
- @lo48576 for error management fixes
- @vaffeine for macros visibility fixes
- @webholik and @Havvy for
escaped
andescaped_transform
fixes - @proman21 for help on porting bits parsers
- the
VerboseError
type accumulates position info and error codes, and can generate a trace with span information - the
lexical-core
crate is now used by default (through thelexical
compilation feature) to parse floats from text - documentation and code examples for all functions and macros
- nom now uses functions instead of macros to generate parsers
- macros now use the functions under the hood
- the minimal Rust version is now 1.31
- the verify combinator's condition function now takes its argument by reference
cond
will now return the error of the parser instead of Nonealpha*
,digit*
,hex_digit*
,alphanumeric*
now recognize only ASCII characters
- deprecated string parsers (with the
_s
suffix), the normal version can be used instead verbose-errors
is not needed anymore, now the error type can be decided when writing the parsers, and parsers provided by nom are generic over the error typeAtEof
,CompleteByteSlice
andCompleteStr
are gone, instead some parsers are specialized to work on streaming or complete input, and provided in different modules- character parsers that were aliases to their
*1
version: eol, alpha, digit, hex_digit, oct_digit, alphanumeric, space, multispace count_fixed
macrowhitespace::sp
can be replaced bycharacter::complete::multispace0
- method combinators are now in the nom-methods crate
take_until_either
,take_until_either1
,take_until_either_and_consume
andtake_until_either_and_consume1
: they can be replaced withis_not
(possibly combined with something else)take_until_and_consume
,take_until_and_consume1
: they can be replaced withtake_until
combined withtake
sized_buffer
andlength_bytes!
: they can be replaced with thelength_data
functionnon_empty
,begin
andrest_s
functioncond_reduce!
,cond_with_error!
,closure!
,apply
,map_res_err!
,expr_opt!
,expr_res!
alt_complete
,separated_list_complete
,separated_nonempty_list_complete
nom 4.2.3 - 2019-03-23
- add missing
build.rs
file to the package - fix code comparison links in changelog
nom 4.2.2 - 2019-03-04
- regression in do_parse macro import for edition 2018
nom 4.2.1 - 2019-02-27
- macro expansion error in
do_parse
due tocompile_error
macro usage
nom 4.2.0 - 2019-01-29
- @JoshMcguigan for unit test fixes
- @oza for documentation fixes
- @wackywendell for better error conversion
- @Zebradil for documentation fixes
- @tsraom for new combinators
- @hcpl for minimum Rust version tests
- @KellerFuchs for removing some unsafe uses in float parsing
- macro import in edition 2018 code should work without importing internal macros now
- the regex parsers do not require the calling code to have imported the regex crate anymore
- error conversions are more ergonomic
- method combinators are now deprecated. They might be moved to a separate crate
- nom now specifies Rust 1.24.1 as minimum version. This was already the case before, now it is made explicit
many0_count
andmany1_count
to count applications of a parser instead of accumulating its results in aVec
- overflow in the byte wrapper for bit level parsers
f64
parsing does not usetransmute
anymore
nom 4.1.1 - 2018-10-14
- compilation issue in verbose-errors mode for
add_return_error
nom 4.1.0 - 2018-10-06
- @xfix for fixing warnings, simplifying examples and performance fixes
- @dvberkel for documentation fixes
- @chifflier for fixing warnings
- @myrrlyn for dead code elimination
- @petrochenkov for removing redundant test macros
- @tbelaire for documentation fixes
- @khernyo for fixing warnings
- @linkmauve for documentation fixes
- @ProgVal for documentation fixes, warning fixes and error management
- @Nemo157 for compilation fixes
- @RReverser for documentation fixes
- @xpayn for fixing warnings
- Blas Rodriguez Irizar for documentation fixes
- @badboy for documentation fixes
- @kyrias for compilation fixes
- @kurnevsky for the
rest_len
parser - @hjr3 for new documentation examples
- @fengalin for error management
- @ithinuel for the pcap example project
- @phaazon for documentation fixes
- @juchiast for documentation fixes
- @jrakow for the
u128
andi128
parsers - @smarnach for documentation fixes
- @derekdreery for
pub(crate)
support - @YaLTeR for
map_res_err!
rest_len
parser, returns the length of the remaining inputparse_to
has its own error code nowu128
andi128
parsers in big and little endian modes- support for
pub(crate)
syntax map_res_err!
combinator that appends the error of its argument function in verbose errors mode
- lots of unused imports warnings were removed
- the
bytes
combinator was not compiling in some cases - the big and little endian combinators now work without external imports
- CI is now faster and uses less cache
- in
add_return_error
, the provided error code is now evaluated only once
fold_many1
will now transmit aFailure
instead of transforming it to anError
float
anddouble
now work on all of nom's input types (&[u8]
,&str
,CompleteByteSlice
,CompleteStr
and any type that implements the required traits).float_s
anddouble_s
got the same modification, but are now deprecatedCompleteByteSlice
andCompleteStr
get a small optimization by inlining some functions
nom 4.0.0 - 2018-05-14
- @jsgf for the new
AtEof
trait - @tmccombs for fixes on
escaped*
combinators - @s3bk for fixes around non Copy input types and documentation help
- @kamarkiewicz for fixes to no_std and CI
- @bheisler for documentation and examples
- @target-san for simplifying the
InputIter
trait for&[u8]
- @willmurphyscode for documentation and examples
- @Chaitanya1416 for typo fixes
- @fflorent for
input_len()
usage fixes - @dbrgn for typo fixes
- @iBelieve for no_std fixes
- @kpp for warning fixes and clippy fixes
- @keruspe for fixes on FindToken
- @dtrebbien for fixes on take_until_and_consume1
- @Henning-K for typo fixes
- @vthriller for documentation fixes
- @federicomenaquintero and @veprbl for their help fixing the float parsers
- @vmchale for new named_args versions
- @hywan for documentation fixes
- @fbenkstein for typo fixes
- @CAD97 for catching missing trait implementations
- @goldenlentils for &str optimizations
- @passy for typo fixes
- @ayrat555 for typo fixes
- @GuillaumeGomez for documentation fixes
- @jrakow for documentation fixes and fixes for
switch!
- @phlosioneer for documentation fixes
- @creativcoder for typo fixes
- @derekdreery for typo fixes
- @lucasem for implementing
Deref
onCompleteStr
andCompleteByteSlice
- @lowenheim for
parse_to!
fixes - @myrrlyn for trait fixes around
CompleteStr
andCompleteByteSlice
- @NotBad4U for fixing code coverage analysis
- @murarth for code formatting
- @glandium for fixing build in no_std
- @csharad for regex compatibility with
CompleteStr
- @FauxFaux for implementing
AsRef<str>
onCompleteStr
- @jaje for implementing
std::Error
onnom:Err
- @fengalin for warning fixes
- @@khernyo for doc formatting
Special thanks to @corkami for the logo :)
- the
IResult
type now becomes aResult
from the standard library Incomplete
now returns the additional data size needed, not the total data size needed- verbose-errors is now a superset of basic errors
- all the errors now include the related input slice
- the arguments from
error_position
and other such macros were swapped to be more consistent with the rest of nom - automatic error conversion: to fix error type inference issues, a custom error type must now implement
std::convert::From<u32>
- the
not!
combinator returns unit()
- FindToken's calling convention was swapped
- the
take_*
combinators are now more coherent and stricter, see commit 484f6724ea3ccb for more information many0
and other related parsers will now returnIncomplete
if the reach the end of input without an error of the child parser. They will also returnIncomplete
on an empty input- the
sep!
combinator for whitespace only consumes whitespace in the prefix, while thews!
combinator takes care of consuming the remaining whitespace
- the
AtEof
trait for input type: indicate if we can get more input data later (related to streaming parsers andIncomplete
handling) - the
escaped*
parsers now support the&str
input type - the
Failure
error variant represents an unrecoverable error, for whichalt
and other combinators will not try other branches. This error means we got in the right part of the code (like, a prefix was checked correctly), but there was an error in the following parts - the
CompleteByteSlice
andCompleteStr
input types consider there will be no more refill of the input. They fixed theIncomplete
related issues when we have all of the data - the
exact!()
combinator will fail if we did not consume the whole input - the
take_while_m_n!
combinator will match a specified number of characters ErrorKind::TakeUntilAndConsume1
- the
recognize_float
parser will match a float number's characters, but will not transform to af32
orf64
alpha
and other basic parsers are now much stricter about partial inputs. We also introduce the*0
and*1
versions of those parsersnamed_args
can now specify the input type as wellHexDisplay
is now implemented for&str
alloc
feature- the
InputTakeAtposition
trait allows specialized implementations of parsers liketake_while!
- the producers and consumers were removed
- the
error_code
anderror_node
macros are not used anymore
anychar!
now works correctly with multibyte characterstake_until_and_consume1!
no longer results in "no method named `find_substring`" and "no method named `slice`" compilation errorstake_until_and_consume1!
returns the correct Incomplete(Needed) amountno_std
compiles properly, and nom can work withalloc
tooparse_to!
now consumes its input
alt
and other combinators will now clone the input if necessary. If the input is alreadyCopy
there is no performance impact- the
rest
parser now works on various input types InputIter::Item
for&[u8]
is now au8
directly, not a reference- we now use the
compile_error
macro to return a compile time error if there was a syntax issue - the permutation combinator now supports optional child parsers
- the float numbers parsers have been refactored to use one common implementation that is nearly 2 times faster than the previous one
- the float number parsers now accept more variants
nom 3.2.1 - 2017-10-27
- @ordian for
alt_complete
fixes - @friedm for documentation fixes
- @kali for improving error management
- there were cases where
alt_complete
could returnIncomplete
- an
into_error_kind
method can be used to transform any error to a common value. This helps when the library is included multiple times as dependency with different feature sets
nom 3.2.0 - 2017-07-24
- @jedireza for documentation fixes
- @gmorenz for the
bytes
combinator - @meh for character combinator fixes for UTF-8
- @jethrogb for avoiding move issues in
separated_list
- new layout for the main page of documentation
anychar
can now work on any input typelength_bytes
is now an alias forlength_data
one_of
,none_of
andchar
will now index correctly UTF-8 characters- the
compiler_error
macro is now correctly exported
- the
bytes
combinator transforms a bit stream back to a byte slice for child parsers
nom 3.1.0 - 2017-06-16
- @sdroege: implementing be_i24 and le_i24
- @Hywan: integrating faster substring search using memchr
- @nizox: fixing type issues in bit stream parsing
- @grissiom: documentation fixes
- @doomrobo: implementing separated_list_complete and separated_nonempty_list_complete
- @CWood1: fixing memchr integration in no_std
- @lu_zero: integrating the compiler_error crate
- @dtolnay: helping debug a type inference issue in map
- memchr is used for substring search if possible
- if building on nightly, some common syntax errors will display a specific error message. If building no stable, display the documentation to activate those messages
count
no longer preallocates its vector
- better type inference in alt_complete
alt
should now work with whitespace parsingmap
should not make type inference errors anymore
- be_i24 and le_i24, parsing big endian and little endian signed 24 bit integers
separated_list_complete
andseparated_nonempty_list_complete
will treat incomplete from sub parsers as error
nom 3.0.0 - 2017-05-12
- Chris Pick for some
Incomplete
related refactors - @dbrgn for documentation fixes
- @valarauca for adding
be_u24
- @ithinuel for usability fixes
- @evuez for README readability fixes and improvements to
IResult
- @s3bk for allowing non-
Copy
types as input - @keruspe for documentation fixes
- @0xd34d10cc for trait fixes on
InputIter
- @sdleffler for lifetime shenanigans on
named_args
- @chengsun for type inference fixes in
alt
- @iBelieve for adding str to no_std
- @Hywan for simplifying code in input traits
- @azerupi for extensive documentation of
alt
andalt_complete
escaped
,separated_list
andseparated_nonempty_list
can now returnIncomplete
when necessaryInputIter
does not requireAsChar
on itsItem
type anymore- the
core
feature that was putting nom inno_std
mode has been removed. There is now astd
feature, activated by default. If it is not activated, nom is inno_std
- in
verbose-errors
mode, the error list is now stored in aVec
instead of a box based linked list chain!
has finally been removed
Endianness
now implementsDebug
,PartialEq
,Eq
,Clone
andCopy
- custom input types can now be cloned if they're not
Copy
- the infamous 'Cannot infer type for E' error should happen less often now
str
is now available inno_std
mode
FileProducer
will be marked asEof
on full buffernamed_args!
now has lifetimes that cannot conflict with the lifetimes from other arguments
be_u24
: big endian 24 bit unsigned integer parsingIResult
now has aunwrap_or
method
nom 2.2.1 - 2017-04-03
- @Victor-Savu for formatting fixes in the README
- @chifflier for detecting and fixing integer overflows
- @utkarshkukreti for some performance improvements in benchmarks
- when calculating how much data is needed in
IResult::Incomplete
, the addition could overflow (it is stored as a usize). This would apparently not result in any security vulnerability on release code
nom 2.2.0 - 2017-03-20
- @seppo0010 for fixing
named_args
- @keruspe for implementing or() on
IResult
, adding the option of default cases inswitch!
, adding support forcargo-travis
- @timlyo for documentation fixes
- @JayKickliter for extending
hex_u32
- @1011X for fixing regex integration
- @Kerollmops for actually marking
chain!
as deprecated - @joliss for documentation fixes
- @utkarshkukreti for tests refactoring and performance improvement
- @tmccombs for documentation fixes
IResult
gets anor()
methodtake_until1
,take_until_and_consume1
,take_till1!
andtake_till1_s!
require at least 1 character
hex_u32
accepts uppercase digits as well- the character based combinators leverage the input traits
- the whitespace parsers now work on &str and other types
take_while1
returnsIncomplete
on empty inputswitch!
can now take a default case
named_args!
now importsIResult
directly- the upgrade to regex 0.2 broke the regex combinators, they work now
nom 2.1.0 - 2017-01-27
- @nickbabcock for documentation fixes
- @derekdreery for documentation fixes
- @DirkyJerky for documentation fixes
- @saschagrunert for documentation fixes
- @lucab for documentation fixes
- @hyone for documentation fixes
- @tstorch for factoring
Slice
- @shepmaster for adding crate categories
- @antoyo for adding
named_args!
verify!
uses a first parser, then applies a function to check that its result satisfies some conditionsnamed_args!
creates a parser function that can accept other arguments along with the inputparse_to!
will use theparse
method fromFromStr
to parse a value. It will automatically translate the input to a string if necessaryfloat
,float_s
,double
,double_s
can recognize floating point numbers in text
escaped!
will now returnIncomplete
if neededpermutation!
supports up to 20 child parsers
nom 2.0.1 - 2016-12-10
Bugfix release
Warning: there is a small breaking change, add_error!
is renamed to add_return_error!
. This was planned for the 2.0 release but was forgotten. This is a small change in a feature that not many people use, for a release that is not yet widely in use, so there will be no 3.0 release for that change.
- @nickbabcock for catching and fixing the
add_error!
mixup - @lucab for documentation fixes
- @jtdowney for noticing that
tag_no_case!
was not working at all for byte slices
add_error!
has been renamed toadd_return_error!
- the
not!
combinator now accepts functions tag_no_case!
is now working as accepted (before, it accepted everything)
The 2.0 release is one of the biggest yet. It was a good opportunity to clean up some badly named combinators and fix invalid behaviours.
Since this version introduces a few breaking changes, an upgrade documentation is available, detailing the steps to fix the most common migration issues. After testing on a set of 30 crates, most of them will build directly, a large part will just need to activate the "verbose-errors" compilation feature. The remaining fixes are documented.
This version also adds a lot of interesting features, like the permutation combinator or whitespace separated formats support.
- @lu-zero for license help
- @adamgreig for type inference fixes
- @keruspe for documentation and example fixes, for the
IResult => Result
conversion work, makingAsChar
's method more consistent, and addingmany_till!
- @jdeeny for implementing
Offset
on&str
- @vickenty for documentation fixes and his refactoring of
length_value!
andlength_bytes!
- @overdrivenpotato for refactoring some combinators
- @taralx for documentation fixes
- @keeperofdakeys for fixing eol behaviour, writing documentation and adding
named_attr!
- @jturner314 for writing documentation
- @bozaro for fixing compilation errors
- @uniphil for adding a
crates.io
badge - @badboy for documentation fixes
- @jugglerchris for fixing
take_s!
- @AndyShiue for implementing
Error
andDisplay
onErrorKind
and detecting incorrect UTF-8 string indexing
- the "simple" error management system does not accumulates errors when backtracking. This is a big perf gain, and is activated by default in nom 2.0
- nom can now work on any type that implement the traits defined in
src/traits.rs
:InputLength
,InputIter
,InputTake
,Compare
,FindToken
,FindSubstring
,Slice
- the documentation from Github's wiki has been moved to the
doc/
directory. They are markdown files that you can build with cargo-external-doc - whitespace separated format support: with the
ws!
combinator, you can automatically introduce whitespace parsers between all parsers and combinators - the
permutation!
combinator applies its child parsers in any order, as long as they all succeed once, and return a tuple of the results do_parse!
is a simpler alternative tochain!
, which is now deprecated- you can now transform an
IResult
in astd::result::Result
length_data!
parses a length, and returns a subslice of that lengthtag_no_case!
provides case independent comparison. It works nicely, without any allocation, for ASCII strings, but for UTF-8 strings, it defaults to an unsatisfying (and incorrect) comparison by lowercasing both stringsnamed_attr!
creates functions likenamed!
but can add attributes like documentationmany_till!
applies repeatedly its first child parser until the second succeeds
- the "verbose" error management that was available in previous versions is now activated by the "verbose-errors" compilation feature
- code reorganization: most of the parsers were moved in separate files to make the source easier to navigate
- most of the combinators are now independent from the input type
- the
eof
function was replaced with theeof!
macro error!
andadd_error!
were replaced withreturn_error!
andadd_return_error!
to fix the name conflict with the log crate- the
offset()
method is now in theOffset
trait length_value!
has been renamed tolength_count!
. The newlength_value!
selects a slice and applies the second parser once on that sliceAsChar::is_0_to_9
is nowAsChar::is_dec_digit
- the combinators with configurable endianness now take an enum instead of a boolean as parameter
- the
count!
,count_fixed!
andlength_*!
combinator calculate incomplete data needs correctly eol
,line_ending
andnot_line_ending
now have a consistent behaviour that works correctly with incomplete datatake_s!
didn't correctly handle the case when the slice is exactly the right length
nom 1.2.4 - 2016-07-20
- @Phlosioneer for documentation fixes
- @sourrust for fixing offsets in
take_bits!
- @ChrisMacNaughton for the XFS crate
- @pwoolcoc for
rest_s
- @fitzgen for more
IResult
methods - @gtors for the negative lookahead feature
- @frk1 and @jeandudey for little endian float parsing
- @jethrogb for fixing input usage in
many1
- @acatton for beating me at nom golf :D
- the
rest_s
method onIResult
returns the remaining&str
input unwrap_err
andunwrap_inc
methods onIResult
not!
will peek at the input and returnDone
if the underlying parser returnedError
orIncomplete
, without consuming the inputle_f32
andle_f64
parse little endian floating point numbers (IEEE 754)
- documentation fixes
take_bits!
is now more precisemany1
inccorectly used thelen
function instead ofinput_len
- the INI parser is simpler
recognize!
had an earlyreturn
that is removed now
nom 1.2.3 - 2016-05-10
- @lu-zero for the contribution guidelines
- @GuillaumeGomez for fixes on
length_bytes
and some documentation - @Hywan for documentation and test fixes
- @Xirdus for correct trait import issues
- @mspiegel for the new AST example
- @cholcombe973 for adding the
cond_with_error!
combinator - @tstorch for refactoring
many0!
- @panicbit for the folding combinators
- @evestera for
separated_list!
fixes - @DanielKeep for correcting some enum imports
- Regular expression combinators starting with
re_bytes_
work on byte slices - example parsing arithmetic expressions to an AST
cond_with_error!
works likecond!
but will returnNone
if the condition is false, andSome(value)
if the underlying parser succeededfold_many0!
,fold_many1!
andfold_many_m_n!
will take a parser, an initial value and a combining function, and fold over the successful applications of the parser
length_bytes!
converts the result of its child parser to usizetake_till!
now importsInputLength
instead of assuming it's in scopeseparated_list!
andseparated_nonempty_list!
will not consume the separator if there's no following successfully parsed value- no more warnings on build
- simpler implementation of
many0!
nom 1.2.2 - 2016-03-09
- @conradev for fixing
take_until_s!
- @GuillaumeGomez for some documentation fixes
- @frewsxcv for some documentation fixes
- @tstorch for some test refactorings
nom::Err
now implementsstd::error::Error
hex_u32
does not parses more than 8 chars nowtake_while!
andtake_while1!
will not perturb the behaviour ofrecognize!
anymore
nom 1.2.1 - 2016-02-23
- @sourrust for adding methods to
IResult
- @tstorch for the test refactoring, and for adding methods to
IResult
andNeeded
- @joelself for fixing the method system
- mapping methods over
IResult
andNeeded
apply_rf
is renamed toapply_m
. This will not warrant a major version, since it is part missing from the methods feture added in the 1.2.0 release- the
regexp_macros
feature that usedregex!
to precompile regular expressions has been replaced by the normal regex engine combined withlazy_static
- when a parser or combinator was returning an empty buffer as remaining part, it was generating one from a static empty string. This was messing with buffer offset calculation. Now, that empty slice is taken like this:
&input[input.len()..]
. - The
regexp_macros
andno_std
feature build again and are now tested with Travis CI
nom 1.2.0 - 2016-02-08
- @zentner-kyle for type inference fixes
- @joelself for his work on
&str
parsing and method parsers - @GuillaumeGomez for implementing methods on
IResult
- @dirk for the
alt_complete!
combinator - @tstorch for a lot of refactoring work and unit tests additions
- @jansegre for the hex digit parsers
- @belgum for some documentation fixes
- @lwandrebeck for some documentation fixes and code fixes in
hex_digit
take_until_and_consume_s!
for consumption of string data until a tag- more function patterns in
named!
. The error type can now be specified alt_complete!
works like thealt!
combinator, but tries the next branch if the current one returnedIncomplete
, instead of returning directly- more unit tests for a lot of combinators
- hexadecimal digit parsers
- the
tuple!
combinator takes a list of parsers as argument, and applies them serially on the input. If all of them are successful, it willr eturn a tuple accumulating all the values. This combinator will (hopefully) replace most uses ofchain!
- parsers can now be implemented as a method for a struct thanks to the
method!
,call_m!
andapply_rf!
combinators
- there were type inference issues in a few combinators. They will now be easier to compile
peek!
compilation with bare functions&str
parsers were splitting data at the byte level, not at the char level, which can result in inconsistencies in parsing UTF-8 characters. They now use character indexes- some method implementations were missing on
IResult<I,O,E>
(with specified error type instead of implicit)
nom 1.1.0 - 2016-01-01
This release adds a lot of features related to &str
parsing. The previous versions
were focused on &[u8]
and bit streams parsing, but there's a need for more text
parsing with nom. The parsing functions like alpha
, digit
and others will now
accept either a &[u8]
or a &str
, so there is no breaking change on that part.
There are also a few performance improvements and documentation fixes.
- @Binero for pushing the work on
&str
parsing - @meh for fixing
Option
andVec
imports - @hoodie for a documentation fix
- @joelself for some documentation fixes
- @vberger for his traits magic making nom functions more generic
- string related parsers:
tag_s!
,take_s!
,is_a_s!
,is_not_s!
,take_while_s!
,take_while1_s!
,take_till_s!
value!
is a combinator that always returns the same value. If a child parser is passed as second argument, that value is returned when the child parser succeeds
tag!
will now compare even on partial input. If it expects "abcd" but receives "ef", it will now return anError
instead ofIncomplete
many0!
and others will preallocate a larger vector to avoid some copies and reallocationsalpha
,digit
,alphanumeric
,space
andmultispace
now accept as input a&[u8]
or a&str
. Additionally, they return an error if they receive an empty inputtake_while!
,take_while1!
,take_while_s!
,take_while1_s!
wilreturn an error on empty input
- if the child parser of
many0!
ormany1!
returnsIncomplete
, it will returnIncomplete
too, possibly updating the needed size Option,
Some
,None
andVec
are now used with full path imports
nom 1.0.1 - 2015-11-22
This releases makes the 1.0 version compatible with Rust 1.2 and 1.3
- @steveklabnik for fixing lifetime issues in Producers and Consumers
nom 1.0.0 - 2015-11-16
Stable release for nom. A lot of new features, a few breaking changes
- @ahenry for macro fixes
- @bluss for fixing documentation
- @sourrust for cleaning code and debugging the new streaming utilities
- @meh for inline optimizations
- @ccmtaylor for fixing function imports
- @soro for improvements to the streaming utilities
- @breard-r for catching my typos
- @nelsonjchen for catching my typos too
- @divarvel for hex string parsers
- @mrordinaire for the
length_bytes!
combinator
IResult::Error
can now use custom error types, and is generic over the input type- Producers and consumers have been replaced. The new implementation uses less memory and integrates more with parsers
nom::ErrorCode
is nownom::ErrorKind
filter!
has been renamed totake_while!
chain!
will count how much data is consumed and use that number to calculate how much data is needed if a parser returnedIncomplete
alt!
returnsIncomplete
if a child parser returnedIncomplete
, instead of skipping to the next parserIResult
does not require a lifetime tag anymore, yay!
complete!
will return an error if the child parser returnedIncomplete
add_error!
will wrap an error, but allow backtrackinghex_u32
parser
- the behaviour around
Incomplete
is better for most parsers now
nom 0.5.0 - 2015-10-16
This release fixes a few issues and stabilizes the code.
- @nox for documentation fixes
- @daboross for linting fixes
- @ahenry for fixing
tap!
and extendingdbg!
anddbg_dmp!
- @bluss for tracking down and fixing issues with unsafe code
- @meh for inlining parser functions
- @ccmtaylor for fixing import of
str::from_utf8
tap!
,dbg!
anddbg_dmp!
now accept function parameters
- the type used in
count_fixed!
must beCopy
chain!
calculates how much data is needed if one of the parsers returns `Incomplete- optional parsers in
chain!
can returnIncomplete
nom 0.4.0 - 2015-09-08
Considering the number of changes since the last release, this version can contain breaking changes, so the version number becomes 0.4.0. A lot of new features and performance improvements!
- @frewsxcv for documentation fixes
- @ngrewe for his work on producers and consumers
- @meh for fixes on
chain!
and for therest
parser - @daboross for refactoring
many0!
andmany1!
- @aleksander for the
switch!
combinator idea - @TechnoMancer for his help with bit level parsing
- @sxeraverx for pointing out a bug in
is_a!
count_fixed!
must take an explicit type as argument to generate the fixed-size array- optional parsing behaviour in
chain!
count!
can take 0 elementsis_a!
andis_not!
can now consume the whole input
- it is now possible to seek to the end of a
MemProducer
opt!
returnsDone(input, None)
ifthe child parser returned
Incomplete`rest
will return the remaining input- consumers can now seek to and from the end of input
switch!
applies a first parser then matches on its result to choose the next parser- bit-level parsers
- character-level parsers
- regular expression parsers
- implementation of
take_till!
,take_while!
andtake_while1!
alt!
can returnIncomplete
- the error analysis functions will now take references to functions instead of moving them
- performance improvements on producers
- performance improvement for
filter!
- performance improvement for
count!
: aVec
of the right size is directly allocated
nom 0.3.11 - 2015-08-04
- @bluss for remarking that the crate included random junk lying non committed in my local repository
- cleanup of my local repository will ship less files in the crates, resulting in a smaller download
nom 0.3.10 - 2015-08-03
bits!
for bit level parsing. It indicates that all child parsers will take a(&[u8], usize)
as input, with the second parameter indicating the bit offset in the first byte. This allows viewing a byte slice as a bit stream. Most combinators can be used directly underbits!
take_bits!
takes an integer type and a number of bits, consumes that number of bits and updates the offset, possibly by crossing byte boundaries- bit level parsers are all written in
src/bits.rs
- Parsers that specifically handle bytes have been moved to src/bytes.rs
. This applies to
tag!,
is_not!,
is_a!,
filter!,
take!,
take_str!,
take_until_and_consume!,
take_until!,
take_until_either_and_consume!,
take_until_either!`
nom 0.3.9 - 2015-07-20
- @badboy for fixing
filter!
- @idmit for some documentation fixes
opt_res!
applies a parser and transform its result in a Result. This parser never failscond_reduce!
takes an expression as parameter, applies the parser if the expression is true, and returns an error if the expression is falsetap!
pass the result of a parser to a block to manipulate it, but do not affect the parser's resultAccReader
is a Read+BufRead that supports data accumulation and partial consumption. Theconsume
method must be called afterwardsto indicate how much was consumed- Arithmetic expression evaluation and parsing example
u16!
,u32!
,u64!
,i16!
,i32!
,i64!
take an expression as parameter, if the expression is true, apply the big endian integer parser, if false, the little endian version- type information for combinators. This will make the documentation a bit easier to navigate
map_opt!
andmap_res!
had issues with argument order due to bad macrosdelimited!
did not compile for certain combinations of argumentsfilter!
did not return a byte slice but a fixed array
nom 0.3.8 - 2015-07-03
- code coverage is now calculated automatically on Travis CI
Stepper
: wrap aProducer
, and call the methodstep
with a parser. This method will buffer data if there is not enough, apply the parser if there is, and keep the rest of the input in memory for the next callReadProducer
: takes something implementingRead
, and makes aProducer
out of it
- the combinators
separated_pair!
anddelimited!
did not work because an implementation macro was not exported - if a
MemProducer
reached its end, it should always returnEof
map!
had issues with argument matching
nom 0.3.7 - 2015-06-24
expr_res!
andexpr_opt!
evaluate an expression returning a Result or Opt and convert it to IResultAsBytes
is implemented for fixed size arrays. This allowstag!([41u8, 42u8])
count_fixed!
argument parsing works again
nom 0.3.6 - 2015-06-15
- documentation for a few functions
- the consumer trait now requires the
failed(&self, error_code)
method in case of parsing error named!
now handles the alternativenamed!(pub fun_name<OutputType>, ...)
filter!
now returns the whole input if the filter function never returned falsetake!
casts its argument as usize, so it can accepts any integer type now
nom 0.3.5 - 2015-06-10
- @cmr for some documentation fixes
count_fixed!
returns a fixed array
count!
is back to the previous behaviour, returning aVec
for sizes known at runtime
- functions and traits exported from
nom::util
are now directly innom::
nom 0.3.4 - 2015-06-09
- @andrew-d for fixes on
cond!
- @keruspe for features in
chain!
chain!
can now have mutable fields
cond!
had an infinite macro recursion
chain!
generates less code now. No apprent compilation time improvement
nom 0.3.3 - 2015-06-09
- @andrew-d for the little endian signed integer parsers
- @keruspe for fixes on
count!
le_i8
,le_i16
,le_i32
,le_i64
: little endian signed integer parsers
- the
alt!
parser compiles much faster, even with more than 8 branches count!
can now return a fixed size array instead of a growable vector
nom 0.3.2 - 2015-05-31
- @keruspe for the
take_str
parser and the function application combinator
take_str!
: takes the specified number of bytes and return a UTF-8 stringapply!
: do partial application on the parameters of a function
Needed::Size
now contains ausize
instead of au32
nom 0.3.1 - 2015-05-21
- @divarvel for the big endian signed integer parsers
be_i8
,be_i16
,be_i32
,be_i64
: big endian signed integer parsers- the
core
feature can be passed to cargo to build withno_std
- colored hexdump can be generated from error chains
nom 0.3.0 - 2015-05-07
- @filipegoncalves for some documentation and the new eof parser
- @CrimsonVoid for putting fully qualified types in the macros
- @lu_zero for some documentation fixes
- new error types that can contain an error code, an input slice, and a list of following errors
error!
will cut backtracking and return directly from the parser, with a specified error codeeof
parser, successful if there is no more input- specific error codes for the parsers provided by nom
- fully qualified types in macros. A lot of imports are not needed anymore
FlatMap
,FlatpMapOpt
andFunctor
traits (replaced bymap!
,map_opt!
andmap_res!
)
nom 0.2.2 - 2015-04-12
- @filipegoncalves and @thehydroimpulse for debugging an infinite loop in many0 and many1
- @thehydroimpulse for suggesting public named parsers
- @skade for removing the dependency on the collections gate
named!
can now declare public functions like this:named!(pub tst, tag!("abcd"));
pair!(X,Y)
returns a tuple(x, y)
separated_pair!(X, sep, Y)
returns a tuple(x, y)
preceded!(opening, X)
returnsx
terminated!(X, closing)
returnsx
delimited(opening, X, closing)
returnsx
separated_list(sep, X)
returns aVec<X>
separated_nonempty_list(sep, X)
returns aVec<X>
of at list one element
many0!
andmany1!
forbid parsers that do not consume inputis_a!
,is_not!
,alpha
,digit
,space
,multispace
will now return an error if they do not consume at least one byte
nom 0.2.1 - 2015-04-04
- @mtsr for catching the remaining debug println!
- @jag426 who killed a lot of warnings
- @skade for removing the dependency on the core feature gate
- little endian unsigned int parsers le_u8, le_u16, le_u32, le_u64
count!
to apply a parser a specified number of timescond!
applies a parser if the condition is met- more parser development tools in
util::*
- in one case,
opt!
would not compile
- most of the feature gates are now removed. The only one still needed is
collections
nom 0.2.0 - 2015-03-24
works with rustc 1.0.0-dev (81e2396c7 2015-03-19) (built 2015-03-19)
- Ryman for the AsBytes implementation
- jag426 and jaredly for documentation fixes
- eternaleye on #rust IRC for his help on the new macro syntax
- the AsBytes trait improves readability, no more b"...", but "..." instead
- Incomplete will now hold either Needed;;Unknown, or Needed::Size(u32). Matching on Incomplete without caring for the value is done with
Incomplete(_)
, but if more granularity is mandatory,Needed
can be matched too alt!
can pass the result of the parser to a closure- the
take_*
macros changed behaviour, the default case is now not to consume the separator. The macros have been renamed as follows:take_until!
->take_until_and_consume!
,take_until_and_leave!
->take_until!
,take_until_either_and_leave!
->take_until_either!
,take_until_either!
->take_until_either_and_consume!
peek!
macro: matches the future input but does not consume itlength_value!
macro: the first argument is a parser returning an
that can cast to usize, then applies the second parsern
times. The macro has a variant with a third argument indicating the expected input size for the second parser- benchmarks are available at https://github.com/Geal/nom_benchmarks
- more documentation
- Unnamed parser syntax: warning, this is a breaking change. With this new syntax, the macro combinators do not generate functions anymore, they create blocks. That way, they can be nested, for better readability. The
named!
macro is provided to create functions from parsers. Please be aware that nesting parsers comes with a small cost of compilation time, negligible in most cases, but can quickly get to the minutes scale if not careful. If this happens, separate your parsers in multiple subfunctions. named!
,closure!
andcall!
macros used to support the unnamed syntaxmap!
,map_opt!
andmap_res!
to combine a parser with a normal function, transforming the input directly, or returning anOption
orResult
is_a!
is now working properly
- the
o!
macro does less thanchain!
, so it has been removed - the
fold0!
andfold1!
macros were too complex and awkward to use, themany*
combinators will be useful for most uses for now
nom 0.1.6 - 2015-02-24
- consumers must have an end method that will be called after parsing
- big endian unsigned int and float parsers: be_u8, be_u16, be_u32, be_u64, be_f32, be_f64
- producers can seek
- function and macros documentation
- README documentation
- lifetime declarations
- tag! can return Incomplete
nom 0.1.5 - 2015-02-17
- traits were renamed: FlatMapper -> FlatMap, Mapper -> FlatMapOpt, Mapper2 -> Functor
- woeks with rustc f1bb6c2f4
nom 0.1.4 - 2015-02-17
- the chaining macro can take optional arguments with '?'
nom 0.1.3 - 2015-02-16
- the chaining macro now takes the closure at the end of the argument list
nom 0.1.2 - 2015-02-16
- flat_map implementation for <&[u8], &[u8]>
- chaining macro
- partial MP4 parser example
nom 0.1.1 - 2015-02-06
- closure syntax change