Fix category slug
This commit is contained in:
parent
c44f33a056
commit
234678befe
|
@ -20,7 +20,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "utf8-norm"
|
||||
version = "1.0.0"
|
||||
version = "1.0.1"
|
||||
dependencies = [
|
||||
"lapp 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "utf8-norm"
|
||||
version = "1.0.0"
|
||||
version = "1.0.1"
|
||||
authors = ["Leonora Tindall <nora@nora.codes>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0-only"
|
||||
|
@ -9,7 +9,7 @@ readme = "README"
|
|||
homepage = "https://nora.codes/projects/utf8-norm"
|
||||
repository = "https://git.nora.codes/nora/utf-norm"
|
||||
keywords = ["unicode", "normalize"]
|
||||
categories = ["command-line=utilities", "internationalization", "localization", "text-processing"]
|
||||
categories = ["command-line-utilities", "internationalization", "localization", "text-processing"]
|
||||
|
||||
[dependencies]
|
||||
lapp = "0.4"
|
||||
|
|
2
README
2
README
|
@ -1,6 +1,6 @@
|
|||
utf8-norm, validate and normalize UTF-8 Unicode data
|
||||
|
||||
Version 1.0.0 licensed GPLv3. (C) 2019 Leonora Tindall <nora@nora.codes>
|
||||
Version 1.0.1 licensed GPLv3. (C) 2019 Leonora Tindall <nora@nora.codes>
|
||||
Fast command line Unicode normalization, supporting stream safety transformations as well
|
||||
as NFC, NFD, NFKD, and NFKC. Exits with failure if the incoming stream is not valid UTF-8.
|
||||
|
||||
|
|
Loading…
Reference in New Issue