summaryrefslogtreecommitdiff
path: root/support/texlab/crates/bibtex-utils
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2024-03-25 03:03:04 +0000
committerNorbert Preining <norbert@preining.info>2024-03-25 03:03:04 +0000
commit05f8146ef2eea2cd71b9c96583c6d893e6c76af5 (patch)
tree615019c00dc1d5e6ec2636bbbb30852f241c04ee /support/texlab/crates/bibtex-utils
parent1feacf4295bab2d8f05aa0f5fbd1d902559bef36 (diff)
CTAN sync 202403250302
Diffstat (limited to 'support/texlab/crates/bibtex-utils')
-rw-r--r--support/texlab/crates/bibtex-utils/Cargo.toml2
-rw-r--r--support/texlab/crates/bibtex-utils/src/field.rs2
-rw-r--r--support/texlab/crates/bibtex-utils/src/field/text.rs4
3 files changed, 4 insertions, 4 deletions
diff --git a/support/texlab/crates/bibtex-utils/Cargo.toml b/support/texlab/crates/bibtex-utils/Cargo.toml
index 8b115bf207..f0158c18a6 100644
--- a/support/texlab/crates/bibtex-utils/Cargo.toml
+++ b/support/texlab/crates/bibtex-utils/Cargo.toml
@@ -13,7 +13,7 @@ itertools = "0.12.0"
rowan = "0.15.15"
rustc-hash = "1.1.0"
syntax = { path = "../syntax" }
-unicode-normalization = "0.1.22"
+unicode-normalization = "0.1.23"
[lib]
doctest = false
diff --git a/support/texlab/crates/bibtex-utils/src/field.rs b/support/texlab/crates/bibtex-utils/src/field.rs
index 71bd25f6d0..b10278cf76 100644
--- a/support/texlab/crates/bibtex-utils/src/field.rs
+++ b/support/texlab/crates/bibtex-utils/src/field.rs
@@ -6,4 +6,4 @@ pub mod number;
pub mod text;
/// A cache used to accelerate related field parses.
-pub type FieldParseCache = FxHashMap<String, String>; \ No newline at end of file
+pub type FieldParseCache = FxHashMap<String, String>;
diff --git a/support/texlab/crates/bibtex-utils/src/field/text.rs b/support/texlab/crates/bibtex-utils/src/field/text.rs
index b3eabaff0e..89f7b569ca 100644
--- a/support/texlab/crates/bibtex-utils/src/field/text.rs
+++ b/support/texlab/crates/bibtex-utils/src/field/text.rs
@@ -1,8 +1,8 @@
use rowan::{ast::AstNode, NodeOrToken};
use syntax::bibtex::{
- Accent, Command, CurlyGroup, HasAccentName, HasCommandName, HasName, HasWord, Join,
- Literal, QuoteGroup, SyntaxKind::*, SyntaxToken, Value,
+ Accent, Command, CurlyGroup, HasAccentName, HasCommandName, HasName, HasWord, Join, Literal,
+ QuoteGroup, SyntaxKind::*, SyntaxToken, Value,
};
use super::FieldParseCache;