Add support for parsing UUID versions 5, 6, 7, and 8
This commit is contained in:
parent
0bc798cbe0
commit
16638561a2
1 changed files with 10 additions and 1 deletions
|
@ -78,7 +78,16 @@ fn uuid_raw(i: &str) -> IResult<&str, Uuid> {
|
|||
char('-'),
|
||||
take_while_m_n(4, 4, is_hex),
|
||||
char('-'),
|
||||
alt((char('1'), char('2'), char('3'), char('4'))),
|
||||
alt((
|
||||
char('1'),
|
||||
char('2'),
|
||||
char('3'),
|
||||
char('4'),
|
||||
char('5'),
|
||||
char('6'),
|
||||
char('7'),
|
||||
char('8'),
|
||||
)),
|
||||
take_while_m_n(3, 3, is_hex),
|
||||
char('-'),
|
||||
take_while_m_n(4, 4, is_hex),
|
||||
|
|
Loading…
Reference in a new issue