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 believe there's an error in this file please file an 9# issue against the rust-lang/cargo repository. If you're 10# editing this file be aware that the upstream Cargo.toml 11# will likely look very different (and much more reasonable) 12 13[package] 14name = "unicode-width" 15version = "0.1.8" 16authors = ["kwantam <kwantam@gmail.com>", "Manish Goregaokar <manishsmail@gmail.com>"] 17exclude = ["target/*", "Cargo.lock"] 18description = "Determine displayed width of `char` and `str` types\naccording to Unicode Standard Annex #11 rules.\n" 19homepage = "https://github.com/unicode-rs/unicode-width" 20documentation = "https://unicode-rs.github.io/unicode-width" 21readme = "README.md" 22keywords = ["text", "width", "unicode"] 23license = "MIT/Apache-2.0" 24repository = "https://github.com/unicode-rs/unicode-width" 25[dependencies.compiler_builtins] 26version = "0.1" 27optional = true 28 29[dependencies.core] 30version = "1.0" 31optional = true 32package = "rustc-std-workspace-core" 33 34[dependencies.std] 35version = "1.0" 36optional = true 37package = "rustc-std-workspace-std" 38 39[features] 40bench = [] 41default = [] 42no_std = [] 43rustc-dep-of-std = ["std", "core", "compiler_builtins"] 44