1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13name = "unicode-width" 14version = "0.1.11" 15authors = [ 16 "kwantam <[email protected]>", 17 "Manish Goregaokar <[email protected]>", 18] 19exclude = [ 20 "target/*", 21 "Cargo.lock", 22] 23description = """ 24Determine displayed width of `char` and `str` types 25according to Unicode Standard Annex #11 rules. 26""" 27homepage = "https://github.com/unicode-rs/unicode-width" 28documentation = "https://unicode-rs.github.io/unicode-width" 29readme = "README.md" 30keywords = [ 31 "text", 32 "width", 33 "unicode", 34] 35license = "MIT/Apache-2.0" 36repository = "https://github.com/unicode-rs/unicode-width" 37 38[dependencies.compiler_builtins] 39version = "0.1" 40optional = true 41 42[dependencies.core] 43version = "1.0" 44optional = true 45package = "rustc-std-workspace-core" 46 47[dependencies.std] 48version = "1.0" 49optional = true 50package = "rustc-std-workspace-std" 51 52[features] 53bench = [] 54default = [] 55no_std = [] 56rustc-dep-of-std = [ 57 "std", 58 "core", 59 "compiler_builtins", 60] 61