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