-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
35 lines (31 loc) · 1006 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "ik-rs"
version = "0.7.0"
authors = ["blueshen <[email protected]>"]
license = "LGPL-2.1-only"
categories = ["database-implementations", "data-structures"]
description = """chinese segment, ik-analyzer for rust"""
documentation = "https://docs.rs/ik-rs"
homepage = "https://github.com/blueshen/ik-rs"
repository = "https://github.com/blueshen/ik-rs"
readme = "README.md"
keywords = ["search", "information", "retrieval", "tantivy", "ik-analyzer"]
edition = "2021"
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9.11"
unicode-blocks = "0.1.4"
once_cell = "1.16.0"
log = "0.4.17"
cfg-if = "1.0.0"
parking_lot = {version="0.12.1", features=["deadlock_detection", "hardware-lock-elision"], optional = true}
[features]
default = ["use-parking-lot"]
use-std-sync = []
use-parking-lot = ["dep:parking_lot"]
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
random-string = "1.0.0"
[[bench]]
name = "ik_bench"
harness = false