fix: add regex's unicode-case feature flag

This commit is contained in:
Jozef Steinhübl 2024-08-04 23:30:13 +02:00
parent 98a06cb22f
commit d645670b57
No known key found for this signature in database
GPG key ID: E6BC90C91973B08F
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@
"package.json": "npm",
"turbo.json": "turbo",
"regex:(vercel|now)\\.json": "vercel",
"regex:(?i)\\.prettier((rc)|(\\.(toml|yml|yaml|json|js))?)$": "prettier",
"regex:\\.prettier((rc)|(\\.(toml|yml|yaml|json|js))?)$": "prettier",
"regex:\\.eslint((rc|ignore)|(\\.(json|js))?)$": "eslint",
"regex:\\.(now|vercel)ignore$": "vercel",
"regex:prettier\\.config\\.js$": "prettier",

View file

@ -10,4 +10,4 @@ tower-lsp = "0.20.0"
git2 = { version = "0.19.0", default-features = false }
serde_json = { version = "1.0.122", features = ["std"] }
lazy_static = "1.5.0"
regex = { version = "1.10.6", default-features = false, features = ["std", "perf"] }
regex = { version = "1.10.6", default-features = false, features = ["std", "perf", "unicode-case"] }