chore(cli): removed unused glob dependency

This commit is contained in:
Boshen 2023-03-19 10:35:55 +08:00
parent c20f60c289
commit ea7ae1011f
No known key found for this signature in database
GPG key ID: 6AC90C77AAAA6ABC
2 changed files with 0 additions and 8 deletions

7
Cargo.lock generated
View file

@ -443,12 +443,6 @@ dependencies = [
"wasi",
]
[[package]]
name = "glob"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
[[package]]
name = "globset"
version = "0.4.10"
@ -871,7 +865,6 @@ name = "oxc_cli"
version = "0.0.0"
dependencies = [
"clap 4.1.8",
"glob",
"ignore",
"jemallocator",
"miette",

View file

@ -24,7 +24,6 @@ oxc_semantic = { path = "../oxc_semantic" }
oxc_linter = { path = "../oxc_linter" }
clap = { workspace = true }
glob = { workspace = true }
rayon = { workspace = true }
miette = { workspace = true, features = ["fancy-no-backtrace"] }