Skip to content

Commit

Permalink
FIx tantivy(0.19 -> 0.20) and Bump dependencies (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
Borber committed Jun 11, 2023
1 parent b7c56d4 commit 69676d2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
7 changes: 3 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ readme = "README.MD"
keywords = ["search", "tokenizer", "Chinese", "tantivy"]

[dependencies]
tantivy = "0.19.1"
tantivy = "0.20"
jieba-rs = { version = "0.6.7", default-features = false }
log = "0.4.17"
log = "0.4.18"

[dev-dependencies]
flexi_logger = "0.25.1"

flexi_logger = "0.25.5"
7 changes: 4 additions & 3 deletions src/tokenizer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ use crate::{options::TokenizerOption, stream::CangjieTokenStream};
use jieba_rs::Jieba;
use log::trace;
use std::sync::Arc;
use tantivy::tokenizer::BoxTokenStream;

#[derive(Clone, Debug)]
pub struct CangJieTokenizer {
Expand All @@ -22,8 +21,10 @@ impl Default for CangJieTokenizer {
}

impl ::tantivy::tokenizer::Tokenizer for CangJieTokenizer {
type TokenStream<'a> = CangjieTokenStream<'a>;

/// Cut text into tokens
fn token_stream<'a>(&self, text: &'a str) -> BoxTokenStream<'a> {
fn token_stream<'a>(&mut self, text: &'a str) -> CangjieTokenStream<'a> {
let result = match self.option {
TokenizerOption::All => self.worker.cut_all(text),
TokenizerOption::Default { hmm: use_hmm } => self.worker.cut(text, use_hmm),
Expand All @@ -40,6 +41,6 @@ impl ::tantivy::tokenizer::Tokenizer for CangJieTokenizer {
}
};
trace!("{:?}->{:?}", text, result);
BoxTokenStream::from(CangjieTokenStream::new(result))
CangjieTokenStream::new(result)
}
}

0 comments on commit 69676d2

Please sign in to comment.