-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
27 lines (23 loc) · 928 Bytes
/
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
[package]
name = "opencc-rust"
version = "1.1.19"
authors = ["Magic Len <[email protected]>"]
edition = "2021"
rust-version = "1.61"
repository = "https://github.com/magiclen/opencc-rust"
homepage = "https://magiclen.org/opencc-rust"
keywords = ["chinese", "opencc", "traditional", "simple"]
categories = ["external-ffi-bindings", "localization"]
description = "Open Chinese Convert(OpenCC, 開放中文轉換) binding for the Rust language for conversion between Traditional Chinese and Simplified Chinese."
license = "Apache-2.0"
include = ["src/**/*", "Cargo.toml", "README.md", "LICENSE", "build.rs", "opencc/**/*"]
[dependencies]
libc = "0.2.43"
lazy-static-include = { version = "3.1.1", optional = true }
lazy_static = { version = "1.4", optional = true }
[build-dependencies]
pkg-config = "0.3.14"
[features]
static-dictionaries = ["lazy-static-include", "lazy_static"]
[package.metadata.docs.rs]
all-features = true