-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 736 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 736 Bytes
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
[package]
name = "uax14_rs"
description = "Implement UAX#14 in Rust"
version = "0.1.0"
authors = ["Makoto Kato <m_kato@ga2.so-net.ne.jp>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/makotokato/uax14_rs"
keywords = ["unicode"]
categories = ["text-processing"]
[dependencies]
unicode-width = "0.1.7"
icu_segmenter_lstm = { git = "https://github.com/unicode-org/icu4x", rev = "fdd3a0b4773388f2df8cdc3c6cb5bf4230ac79cf" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
lazy_static = "1.0"
[dev-dependencies]
criterion = "0.3"
[lib]
path = "src/lib.rs"
bench = false # This option is required for Benchmark CI
[[bench]]
name = "bench"
harness = false
[features]
default = []