build(deps): disable unnecessary/unused regex features (#5175)
This will reduce the binary size by ~400 kB.
This commit is contained in:
parent
2558c4588b
commit
b758d52eb2
|
@ -67,7 +67,7 @@ pest_derive = "2.6.0"
|
|||
quick-xml = "0.28.2"
|
||||
rand = "0.8.5"
|
||||
rayon = "1.7.0"
|
||||
regex = "1.8.1"
|
||||
regex = { version = "1.8.1", default-features = false, features = ["perf", "std", "unicode-perl"] }
|
||||
rust-ini = "0.19.0"
|
||||
semver = "1.0.17"
|
||||
serde = { version = "1.0.162", features = ["derive"] }
|
||||
|
|
Loading…
Reference in New Issue