diff --git a/Cargo.lock b/Cargo.lock index 2bf839d..57e1608 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,32 +1,40 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "lapp" version = "0.4.0" -source = "git+https://github.com/NoraCodes/lapp?branch=nora/iofile_paths#0fb2df69ce5262958401214fca0d0f31d62b1062" +source = "git+https://github.com/stevedonovan/lapp#a061a39cfcc22ded7b3ad7d59699b7211d90df79" [[package]] -name = "smallvec" -version = "0.6.10" +name = "tinyvec" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "unicode-normalization" -version = "0.1.8" +version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" dependencies = [ - "smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tinyvec", ] [[package]] name = "utf8-norm" -version = "1.1.0" +version = "1.1.1" dependencies = [ - "lapp 0.4.0 (git+https://github.com/NoraCodes/lapp?branch=nora/iofile_paths)", - "unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "lapp", + "unicode-normalization", ] - -[metadata] -"checksum lapp 0.4.0 (git+https://github.com/NoraCodes/lapp?branch=nora/iofile_paths)" = "" -"checksum smallvec 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7" -"checksum unicode-normalization 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "141339a08b982d942be2ca06ff8b076563cbe223d1befd5450716790d44e2426" diff --git a/Cargo.toml b/Cargo.toml index 5e2b094..2ae9a6d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "utf8-norm" -version = "1.1.0" +version = "1.1.1" authors = ["Leonora Tindall "] edition = "2018" license = "GPL-3.0-only" @@ -12,6 +12,6 @@ keywords = ["unicode", "normalize"] categories = ["command-line-utilities", "internationalization", "localization", "text-processing"] [dependencies] -lapp = { git = "https://github.com/NoraCodes/lapp", branch = "nora/iofile_paths" } +lapp = { version = "0.4", git = "https://github.com/stevedonovan/lapp" } unicode-normalization = "0.1"