Skip to content

Commit

Permalink
Fix issues found in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dminor committed Nov 16, 2021
1 parent b436a5c commit 7c21cd7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion utils/char16trie/src/char16trie.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ fn skip_node_value(pos: usize, lead: u16) -> usize {
#[derive(Clone)]
pub struct Char16Trie<'data> {
/// An array of u16 containing the trie data.
#[serde(borrow)]
#[cfg_attr(feature = "serde", serde(borrow))]
pub data: ZeroVec<'data, u16>,
}

Expand Down
1 change: 0 additions & 1 deletion utils/char16trie/tests/test_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
use std::fs::File;
use std::io::Read;
use std::path::Path;
use toml;

#[derive(serde::Deserialize)]
pub struct TestFile {
Expand Down

0 comments on commit 7c21cd7

Please sign in to comment.