refact(regex): disable default features

these relate to performance and unicode support, neither of which we
are currently interested in
This commit is contained in:
steven-omaha
2023-03-30 17:58:47 +02:00
parent f2ebfe68b5
commit 37409e9e60
2 changed files with 8 additions and 25 deletions
+2 -2
View File
@@ -14,10 +14,10 @@ features = ["alpm/docs-rs"]
[dependencies]
anyhow = { workspace = true }
clap = "4.1"
clap = "4.2"
const_format = { version = "0.2", default-features = false }
path-absolutize = "3.0"
regex = "1.7"
regex = { version = "1.7", default-features = false, features = ["std"] }
termios = "0.3"
serde = "1.0"