-
Notifications
You must be signed in to change notification settings - Fork 59
/
Cargo.toml
59 lines (48 loc) · 1.62 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "encoding"
version = "0.3.0-dev"
authors = ["Kang Seonghoon <[email protected]>"]
description = "Character encoding support for Rust"
homepage = "https://github.com/lifthrasiir/rust-encoding"
documentation = "https://lifthrasiir.github.io/rust-encoding/"
repository = "https://github.com/lifthrasiir/rust-encoding"
keywords = ["encoding", "unicode", "charset"]
readme = "README.md"
license = "MIT"
[lib]
name = "encoding"
[features]
no-optimized-legacy-encoding = [
"encoding-index-singlebyte/no-optimized-legacy-encoding",
"encoding-index-korean/no-optimized-legacy-encoding",
"encoding-index-japanese/no-optimized-legacy-encoding",
"encoding-index-simpchinese/no-optimized-legacy-encoding",
"encoding-index-tradchinese/no-optimized-legacy-encoding",
]
[dependencies.encoding-types]
version = "0.2"
path = "src/types"
# version policy for index tables:
# - major: addition or deletion of index tables
# - minor: any content changes to index tables, numbered by the date
# - patch: language changes
#
# we definitely don't want to use the old index table,
# so we should use tilde requirements here.
[dependencies.encoding-index-singlebyte]
version = "~1.20160120.0"
path = "src/index/singlebyte"
[dependencies.encoding-index-korean]
version = "~1.20141219.6"
path = "src/index/korean"
[dependencies.encoding-index-japanese]
version = "~1.20141219.6"
path = "src/index/japanese"
[dependencies.encoding-index-simpchinese]
version = "~1.20160120.0"
path = "src/index/simpchinese"
[dependencies.encoding-index-tradchinese]
version = "~1.20141219.6"
path = "src/index/tradchinese"
[dev-dependencies]
getopts = "*" # for examples