Helper macros for the rusticata project.
This crate contains some additions to nom.
For example, the [combinator::cond_else
] function allows to apply the first parser if the
condition is true, and the second if the condition is false:
use rusticata_macros::combinator::cond_else;
let r: IResult<_, _, ()> = cond_else(
|| s.len() > 1,
be_u16,
map(be_u8, u16::from)
)(s);
See the documentation for more details and examples.
Different versions of this crate are available, depending on nom version.
rusticata-macros
4.x depends on nom 7rusticata-macros
3.x depends on nom 6rusticata-macros
2.x depends on nom 5
Crate is documented, do running cargo doc
will crate the offline documentation.
Reference documentation can be found here
- Remove macro
slice_fixed
- Upgrade to nom 7
- Remove macros
- Add
be_var_u64
andle_var_u64
- Upgrade to nom 6
- Add common trait
Serialize
for structures serialization
- Add function version of most combinators
- Add macros
q
(quote) andalign32
- Add
upgrade_error
andupgrade_error_to
- Add macro
custom_check
- Add macro
flat_take
- Upgrade to nom 5
- Debug types: use newtypes
- Add macro
newtype_enum
- Upgrade to nom 4.0
- Warning: this is a breaking change!
- Mark
parse_uint24
as deprecated
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.