diff --git a/Cargo.lock b/Cargo.lock index 17b0853..2f506f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -466,9 +466,9 @@ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" [[package]] name = "encoding_rs" -version = "0.8.33" +version = "0.8.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" +checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" dependencies = [ "cfg-if", ] @@ -1300,9 +1300,9 @@ dependencies = [ [[package]] name = "trycmd" -version = "0.15.0" +version = "0.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "464edb3603a81a50b4c8f47b11dfade69ef48ffdc0af2f8b194ad87cbda75317" +checksum = "d14c6930faf7c6c4942ce17daa6f38d659d2ebf2b579a56b6926707038eb37b0" dependencies = [ "glob", "humantime", @@ -1476,9 +1476,9 @@ checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" [[package]] name = "unicode-width" -version = "0.1.11" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" +checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6" [[package]] name = "unicode-xid" @@ -1725,9 +1725,9 @@ checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" [[package]] name = "winnow" -version = "0.6.5" +version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8" +checksum = "14b9415ee827af173ebb3f15f9083df5a122eb93572ec28741fb153356ea2578" dependencies = [ "memchr", ] diff --git a/crates/typos-cli/Cargo.toml b/crates/typos-cli/Cargo.toml index 1294bea..22fb30e 100644 --- a/crates/typos-cli/Cargo.toml +++ b/crates/typos-cli/Cargo.toml @@ -67,7 +67,7 @@ serde_json = "1.0" kstring = { version = "2.0.0", features = ["serde"] } typed-arena = "2.0.2" maplit = "1.0" -unicode-width = "0.1.11" +unicode-width = "0.1.12" unic-emoji-char = "0.9.0" thread_local = "1.1.8" globset = "0.4.14" @@ -76,13 +76,13 @@ anstream = "0.6.13" colorchoice-clap = "1.0.3" serde_regex = "1.1.0" regex = "1.10.4" -encoding_rs = "0.8.33" +encoding_rs = "0.8.34" [dev-dependencies] assert_fs = "1.1" divan = "0.1.14" snapbox = "0.5.9" -trycmd = "0.15.0" +trycmd = "0.15.1" [[bench]] name = "check_file" diff --git a/crates/typos/Cargo.toml b/crates/typos/Cargo.toml index ee03fe4..57e374c 100644 --- a/crates/typos/Cargo.toml +++ b/crates/typos/Cargo.toml @@ -18,7 +18,7 @@ rustdoc-args = ["--cfg", "docsrs"] [dependencies] anyhow = "1.0" thiserror = "1.0" -winnow = "0.6.5" +winnow = "0.6.7" unicode-xid = "0.2.4" once_cell = "1.19.0" serde = { version = "1.0", features = ["derive"] } diff --git a/crates/varcon-core/Cargo.toml b/crates/varcon-core/Cargo.toml index 6b9df07..1c6c62b 100644 --- a/crates/varcon-core/Cargo.toml +++ b/crates/varcon-core/Cargo.toml @@ -20,7 +20,7 @@ parser = ["dep:winnow"] flags = ["dep:enumflags2"] [dependencies] -winnow = { version = "0.6.5", optional = true } +winnow = { version = "0.6.7", optional = true } enumflags2 = { version = "0.7", optional = true } [lints]