All Versions
60
Latest Version
Avg Release Cycle
71 days
Latest Release
578 days ago
Changelog History
Page 6
Changelog History
Page 6
-
v0.3.0 Changes
May 07, 2015Thanks
- ๐ @filipegoncalves for some documentation and the new eof parser
- @CrimsonVoid for putting fully qualified types in the macros
- ๐ @lu_zero for some documentation fixes
โ Added
- ๐ 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 code - ๐
eof
parser, successful if there is no more input - ๐ specific error codes for the parsers provided by nom
๐ Changed
- fully qualified types in macros. A lot of imports are not needed anymore
โ Removed
FlatMap
,FlatpMapOpt
andFunctor
traits (replaced bymap!
,map_opt!
andmap_res!
)
-
v0.2.2 Changes
April 12, 2015Thanks
- @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
โ Added
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
๐ Changed
- ๐
many0!
andmany1!
forbid parsers that do not consume input is_a!
,is_not!
,alpha
,digit
,space
,multispace
will now return an error if they do not consume at least one byte
-
v0.2.1 Changes
April 04, 2015Thanks
- ๐จ @mtsr for catching the remaining debug println!
- โ @jag426 who killed a lot of warnings
- @skade for removing the dependency on the core feature gate
โ Added
- little endian unsigned int parsers le_u8, le_u16, le_u32, le_u64
- ๐
count!
to apply a parser a specified number of times - ๐
cond!
applies a parser if the condition is met - ๐ more parser development tools in
util::*
๐ Fixed
- in one case,
opt!
would not compile
โ Removed
- ๐ most of the feature gates are now removed. The only one still needed is
collections
-
v0.2.0 Changes
March 24, 2015works with
rustc 1.0.0-dev (81e2396c7 2015-03-19) (built 2015-03-19)
Thanks
- Ryman for the AsBytes implementation
- ๐ jag426 and jaredly for documentation fixes
- eternaleye on #rust IRC for his help on the new macro syntax
๐ Changed
- 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 - 0๏ธโฃ 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!
โ Added
peek!
macro: matches the future input but does not consume it- ๐
length_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 syntax map!
,map_opt!
andmap_res!
to combine a parser with a normal function, transforming the input directly, or returning anOption
orResult
๐ Fixed
is_a!
is now working properly
โ Removed
- ๐ 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
-
v0.1.6 Changes
February 24, 2015๐ Changed
- ๐ consumers must have an end method that will be called after parsing
โ Added
- 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 ### ๐ Fixed
- lifetime declarations
- ๐ท tag! can return Incomplete
-
v0.1.5 Changes
February 17, 2015๐ Changed
- traits were renamed: FlatMapper -> FlatMap, Mapper -> FlatMapOpt, Mapper2 -> Functor
๐ Fixed
- woeks with rustc f1bb6c2f4
-
v0.1.4 Changes
February 17, 2015๐ Changed
- the chaining macro can take optional arguments with '?'
-
v0.1.3 Changes
February 16, 2015๐ Changed
- the chaining macro now takes the closure at the end of the argument list
-
v0.1.2 Changes
February 16, 2015โ Added
- flat_map implementation for <&[u8], &[u8]>
- chaining macro
- ๐ partial MP4 parser example
-
v0.1.1 Changes
February 06, 2015๐ Fixed
- closure syntax change