Skip to content

Commit 40c6467

Browse files
authored
Merge pull request #26 from lindera/bump
Update dependencies
2 parents c94aafc + a311f53 commit 40c6467

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lindera-sqlite"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
edition = "2024"
55
description = "Lindera tokenizer for SQLite FTS5 extention"
66
documentation = "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`
4949
libc = { version = "0.2.175", "default-features" = false, features = [] }
50-
serde_json = "1.0.143"
50+
serde_json = "1.0.144"
5151
unicode-segmentation = "1.12.0"
5252
unicode-normalization = "0.1.24"
5353

54-
lindera = "1.1.1"
54+
lindera = "1.2.0"
5555

5656
[dev-dependencies]
5757
criterion = "0.7.0"

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
);

0 commit comments

Comments
 (0)