返回 CodeWhale
Cargo.toml.orig
根目录 / patches / unicode-width-0.2.2 / Cargo.toml.orig
1 [package]
2
3 name = "unicode-width"
4 version = "0.2.2"
5 authors = [
6 "kwantam <kwantam@gmail.com>",
7 "Manish Goregaokar <manishsmail@gmail.com>",
8 ]
9
10 homepage = "https://github.com/unicode-rs/unicode-width"
11 repository = "https://github.com/unicode-rs/unicode-width"
12 license = "MIT OR Apache-2.0"
13 categories = [
14 "command-line-interface",
15 "internationalization",
16 "no-std::no-alloc",
17 "text-processing",
18 ]
19 keywords = ["text", "width", "unicode"]
20 readme = "README.md"
21 description = """
22 Determine displayed width of `char` and `str` types
23 according to Unicode Standard Annex #11 rules.
24 """
25 edition = "2021"
26 rust-version = "1.66"
27
28 exclude = ["/.github/*"]
29
30 [dependencies]
31 std = { version = "1.0", package = "rustc-std-workspace-std", optional = true }
32 core = { version = "1.0", package = "rustc-std-workspace-core", optional = true }
33
34 [features]
35 cjk = []
36 default = ["cjk"]
37 rustc-dep-of-std = ['std', 'core']
38
39 # Legacy, now a no-op
40 no_std = []
41
41 lines Plain Text