diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:11:38 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:12:43 +0000 |
commit | cf94bdc0742c13e2a0cac864c478b8626b266e1b (patch) | |
tree | 044670aa50cc5e2b4229aa0b6b3df6676730c0a6 /vendor/unicode-width/Cargo.toml | |
parent | Adding debian version 1.65.0+dfsg1-2. (diff) | |
download | rustc-cf94bdc0742c13e2a0cac864c478b8626b266e1b.tar.xz rustc-cf94bdc0742c13e2a0cac864c478b8626b266e1b.zip |
Merging upstream version 1.66.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/unicode-width/Cargo.toml')
-rw-r--r-- | vendor/unicode-width/Cargo.toml | 30 |
1 files changed, 24 insertions, 6 deletions
diff --git a/vendor/unicode-width/Cargo.toml b/vendor/unicode-width/Cargo.toml index 9cb47d54c..77aded9fc 100644 --- a/vendor/unicode-width/Cargo.toml +++ b/vendor/unicode-width/Cargo.toml @@ -11,16 +11,30 @@ [package] name = "unicode-width" -version = "0.1.9" -authors = ["kwantam <kwantam@gmail.com>", "Manish Goregaokar <manishsmail@gmail.com>"] -exclude = ["target/*", "Cargo.lock"] -description = "Determine displayed width of `char` and `str` types\naccording to Unicode Standard Annex #11 rules.\n" +version = "0.1.10" +authors = [ + "kwantam <kwantam@gmail.com>", + "Manish Goregaokar <manishsmail@gmail.com>", +] +exclude = [ + "target/*", + "Cargo.lock", +] +description = """ +Determine displayed width of `char` and `str` types +according to Unicode Standard Annex #11 rules. +""" homepage = "https://github.com/unicode-rs/unicode-width" documentation = "https://unicode-rs.github.io/unicode-width" readme = "README.md" -keywords = ["text", "width", "unicode"] +keywords = [ + "text", + "width", + "unicode", +] license = "MIT/Apache-2.0" repository = "https://github.com/unicode-rs/unicode-width" + [dependencies.compiler_builtins] version = "0.1" optional = true @@ -39,4 +53,8 @@ package = "rustc-std-workspace-std" bench = [] default = [] no_std = [] -rustc-dep-of-std = ["std", "core", "compiler_builtins"] +rustc-dep-of-std = [ + "std", + "core", + "compiler_builtins", +] |