Add glob as a dependency

pull/517/head
Wilfred Hughes 2023-05-13 22:59:18 +07:00
parent f0f4baedec
commit 22fadee91b
2 changed files with 8 additions and 0 deletions

7
Cargo.lock generated

@ -231,6 +231,7 @@ dependencies = [
"clap", "clap",
"const_format", "const_format",
"crossterm", "crossterm",
"glob",
"itertools", "itertools",
"lazy_static", "lazy_static",
"libc", "libc",
@ -301,6 +302,12 @@ version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "glob"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
[[package]] [[package]]
name = "hashbrown" name = "hashbrown"
version = "0.11.2" version = "0.11.2"

@ -56,6 +56,7 @@ tree_magic_mini = "3.0.2"
bumpalo = "3.11.1" bumpalo = "3.11.1"
unicode-width = "0.1.9" unicode-width = "0.1.9"
crossterm = { version = "0.25.0", features = [] } crossterm = { version = "0.25.0", features = [] }
glob = "0.3.1"
[dev-dependencies] [dev-dependencies]
# This is the last version of assert_cmd that supports rustc 1.57. # This is the last version of assert_cmd that supports rustc 1.57.