• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2
3name = "unicode-width"
4version = "0.1.8"
5authors = ["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']
30