blob: f087a85da465699db858a04be0c8edeea5f1a9c7 [file] [log] [blame]
Matthew Maurer19837bd2020-06-02 11:15:36 -07001[package]
2
3name = "unicode-width"
Joel Galenson1644b852021-09-22 11:26:46 -07004version = "0.1.9"
Matthew Maurer19837bd2020-06-02 11:15:36 -07005authors = ["kwantam <kwantam@gmail.com>", "Manish Goregaokar <manishsmail@gmail.com>"]
6
7homepage = "https://github.com/unicode-rs/unicode-width"
8repository = "https://github.com/unicode-rs/unicode-width"
9documentation = "https://unicode-rs.github.io/unicode-width"
10license = "MIT/Apache-2.0"
11keywords = ["text", "width", "unicode"]
12readme = "README.md"
13description = """
14Determine displayed width of `char` and `str` types
15according to Unicode Standard Annex #11 rules.
16"""
17
18exclude = [ "target/*", "Cargo.lock" ]
19
20[dependencies]
21std = { version = "1.0", package = "rustc-std-workspace-std", optional = true }
22core = { version = "1.0", package = "rustc-std-workspace-core", optional = true }
23compiler_builtins = { version = "0.1", optional = true }
24
25[features]
26default = []
27no_std = []
28bench = []
29rustc-dep-of-std = ['std', 'core', 'compiler_builtins']