diff --git a/Cargo.lock b/Cargo.lock index 106eec8..5ae0b44 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -813,7 +813,7 @@ dependencies = [ "structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", "typos 0.1.1", - "typos-dict 0.1.1", + "typos-dict 0.2.0", "unicase 2.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -831,7 +831,7 @@ dependencies = [ [[package]] name = "typos-dict" -version = "0.1.1" +version = "0.2.0" dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "phf 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 61459c2..cf46669 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ codecov = { repository = "crate-ci/typos" } [dependencies] typos = { version = "0.1", path = "typos" } -typos-dict = { version = "0.1", path = "dict/typos" } +typos-dict = { version = "^0.2", path = "dict/typos" } phf = { version = "0.8", features = ["unicase"] } unicase = "2.5" failure = "0.1" diff --git a/dict/typos/Cargo.toml b/dict/typos/Cargo.toml index 69a4299..92833b6 100644 --- a/dict/typos/Cargo.toml +++ b/dict/typos/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typos-dict" -version = "0.1.1" +version = "0.2.0" authors = ["Ed Page "] description = "Source Code Spelling Correction" repository = "https://github.com/crate-ci/typos"