File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[package ]
22name = " lindera-sqlite"
3- version = " 1.0.1 "
3+ version = " 1.0.2 "
44edition = " 2024"
55description = " Lindera tokenizer for SQLite FTS5 extention"
66documentation = " https://docs.rs/lindera-sqlite"
@@ -47,11 +47,11 @@ panic = "abort" # Abort on panic for smaller binary and faster code
4747[dependencies ]
4848# libc without `std`
4949libc = { version = " 0.2.175" , "default-features" = false , features = [] }
50- serde_json = " 1.0.143 "
50+ serde_json = " 1.0.144 "
5151unicode-segmentation = " 1.12.0"
5252unicode-normalization = " 0.1.24"
5353
54- lindera = " 1.1.1 "
54+ lindera = " 1.2.0 "
5555
5656[dev-dependencies ]
5757criterion = " 0.7.0"
Original file line number Diff line number Diff line change @@ -66,8 +66,8 @@ fn lindera_fts5_tokenize_internal(
6666 let rc = x_token (
6767 p_ctx,
6868 0 ,
69- token. text . as_bytes ( ) . as_ptr ( ) as * const c_char ,
70- token. text . len ( ) as c_int ,
69+ token. surface . as_bytes ( ) . as_ptr ( ) as * const c_char ,
70+ token. surface . len ( ) as c_int ,
7171 token. byte_start as c_int ,
7272 token. byte_end as c_int ,
7373 ) ;
You can’t perform that action at this time.
0 commit comments