gecko-dev/third_party/rust/encoding/Cargo.toml

48 строки
1.2 KiB
TOML
Исходник Обычный вид История

[package]
name = "encoding"
version = "0.2.33"
authors = ["Kang Seonghoon <public+rust@mearie.org>"]
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"
# 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.20141219.5"
path = "src/index/singlebyte"
[dependencies.encoding-index-korean]
version = "~1.20141219.5"
path = "src/index/korean"
[dependencies.encoding-index-japanese]
version = "~1.20141219.5"
path = "src/index/japanese"
[dependencies.encoding-index-simpchinese]
version = "~1.20141219.5"
path = "src/index/simpchinese"
[dependencies.encoding-index-tradchinese]
version = "~1.20141219.5"
path = "src/index/tradchinese"
[dev-dependencies]
getopts = "0.2" # for examples