forked from mozillazg/rust-pinyin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 779 Bytes
/
Cargo.toml
File metadata and controls
27 lines (23 loc) · 779 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
[package]
name = "pinyin"
version = "0.6.0"
authors = ["mozillazg <mozillazg101@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/mozillazg/rust-pinyin"
repository = "https://github.com/mozillazg/rust-pinyin"
description = "Convert Chinese to pinyin"
documentation = "https://docs.rs/pinyin/"
keywords = ["pinyin", "hanzi", "Chinese"]
exclude = ["pinyin-data/**/*", "src/bin/mk_dict.rs"]
[badges]
travis-ci = { repository = "mozillazg/rust-pinyin", branch = "master" }
appveyor = { repository = "mozillazg/rust-pinyin", branch = "master", service = "github" }
coveralls = { repository = "mozillazg/rust-pinyin", branch = "master" }
[[example]]
name = "main"
path = "./examples/main.rs"
[dependencies]
lazy_static = "1"
[features]
unstable = []