Skip to content

Commit

Permalink
Bump logos from 0.13.0 to 0.14.0 (#1071)
Browse files Browse the repository at this point in the history
  • Loading branch information
pfoerster authored Apr 1, 2024
1 parent 6589fed commit 98277eb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 18 deletions.
25 changes: 10 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition.workspace = true
rust-version.workspace = true

[dependencies]
logos = "0.13.0"
logos = "0.14.0"
once_cell = "1.19.0"
regex = "1.10.4"
rowan = "0.15.15"
Expand Down
4 changes: 2 additions & 2 deletions crates/parser/src/bibtex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ enum ValueToken {
#[token("\"")]
Quote,

#[regex(r"\d+", priority = 2)]
#[regex(r"\d+", priority = 3)]
Integer,

#[regex(r#"[^\s"\{\},#]+"#)]
Expand All @@ -349,7 +349,7 @@ enum ContentToken {
#[token("\"")]
Quote,

#[regex(r"\d+", priority = 2)]
#[regex(r"\d+", priority = 3)]
Integer,

#[token(r#"~"#)]
Expand Down

0 comments on commit 98277eb

Please sign in to comment.