Skip to content

Commit 53e209f

Browse files
authored
insta: Cargo: allow globset version up to 0.4.16 (#810)
## Summary [globset v0.4.17](https://github.com/BurntSushi/ripgrep/releases/tag/globset-0.4.17) changed its rust edition from 2021 to 2024. As insta is currently on edition 2021 ensure to use globset versions <0.4.17. ## References - BurntSushi/ripgrep@a60e62d - BurntSushi/ripgrep#3149 Signed-off-by: Richard Leitner <dev@g0hl1n.net>
1 parent a7d6247 commit 53e209f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

insta/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ pest = { version = "2.1.3", optional = true }
5050
pest_derive = { version = "2.1.0", optional = true }
5151
ron = { version = "0.7.1", optional = true }
5252
toml = { version = "0.5.7", optional = true }
53-
globset = { version = "0.4.6", optional = true }
53+
globset = { version = ">= 0.4.6, < 0.4.17", optional = true }
5454
walkdir = { version = "2.3.1", optional = true }
5555
similar = { version = "2.1.0", features = ["inline"] }
5656
regex = { version = "1.6.0", default-features = false, optional = true, features = [

0 commit comments

Comments
 (0)