forked from BurntSushi/ucd-generate
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
45 lines (39 loc) · 1.21 KB
/
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
36
37
38
39
40
41
42
43
44
45
[package]
name = "yeslogic-ucd-generate"
version = "0.7.0" #:version
authors = [
"Andrew Gallant <jamslam@gmail.com>",
"YesLogic Pty. Ltd. <info@yeslogic.com>"
]
description = """
A program for generating packed representations of the Unicode character
database that can be efficiently searched with support for additional tables.
"""
documentation = "https://github.com/yeslogic/ucd-generate"
homepage = "https://github.com/yeslogic/ucd-generate"
repository = "https://github.com/yeslogic/ucd-generate"
readme = "README.md"
keywords = ["unicode", "generate", "character", "table", "fst"]
license = "MIT OR Apache-2.0"
categories = ["text-processing", "internationalization"]
edition = "2021"
rust-version = "1.70"
[workspace]
members = ["ucd-parse", "ucd-trie", "ucd-util"]
[[bin]]
bench = false
path = "src/main.rs"
name = "yeslogic-ucd-generate"
[dependencies]
fst = "0.4.0"
ucd-parse = { version = "0.1.13", path = "ucd-parse", package = "yeslogic-ucd-parse" }
ucd-trie = { version = "0.1.7", path = "ucd-trie" }
ucd-util = { version = "0.2.2", path = "ucd-util" }
[dependencies.clap]
version = "2.34.0"
default-features = false
features = ["suggestions"]
[dev-dependencies]
once_cell = "1"
[profile.release]
debug = true