mirror of https://github.com/kdl-org/kdl-rs.git
feat(deps): bump miette to 7.4.0
Fixes: https://github.com/kdl-org/kdl-rs/issues/84
This commit is contained in:
parent
232d253cbf
commit
b5fa2e1c70
|
|
@ -15,6 +15,6 @@ default = ["span"]
|
||||||
span = []
|
span = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
miette = "5.3.0"
|
miette = "7.4.0"
|
||||||
nom = { version = "7.1.1", default-features = false }
|
nom = { version = "7.1.1", default-features = false }
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.30"
|
||||||
|
|
|
||||||
|
|
@ -286,7 +286,7 @@ fn plain_identifier<'a: 'b, 'b>(
|
||||||
|
|
||||||
fn quoted_identifier<'a: 'b, 'b>(
|
fn quoted_identifier<'a: 'b, 'b>(
|
||||||
kdl_parser: &'b KdlParser<'a>,
|
kdl_parser: &'b KdlParser<'a>,
|
||||||
) -> impl Fn(&'a str) -> IResult<&str, KdlIdentifier, KdlParseError<&str>> + 'b {
|
) -> impl Fn(&'a str) -> IResult<&'a str, KdlIdentifier, KdlParseError<&'a str>> + 'b {
|
||||||
move |input| {
|
move |input| {
|
||||||
let start = input;
|
let start = input;
|
||||||
let (input, (raw, val)) = alt((string, raw_string))(input)?;
|
let (input, (raw, val)) = alt((string, raw_string))(input)?;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue