1
0
mirror of https://github.com/containers/youki synced 2024-11-26 06:08:07 +01:00

deps: Disable unused/unnecessary regex features in libcontainer (#2781)

To reduce binary size and dependency bloat in projects using libcontainer.

Signed-off-by: Jakub Jirutka <jakub@jirutka.cz>
This commit is contained in:
Jakub Jirutka 2024-05-06 14:23:36 +02:00 committed by GitHub
parent 5ecfda0ff4
commit 96ff8c31ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -49,7 +49,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
rust-criu = "0.4.0" rust-criu = "0.4.0"
protobuf = "= 3.2.0" # https://github.com/checkpoint-restore/rust-criu/issues/19 protobuf = "= 3.2.0" # https://github.com/checkpoint-restore/rust-criu/issues/19
regex = "1.10.4" regex = { version = "1.10.4", default-features = false, features = ["std", "unicode-perl"] }
thiserror = "1.0.59" thiserror = "1.0.59"
tracing = { version = "0.1.40", features = ["attributes"] } tracing = { version = "0.1.40", features = ["attributes"] }
safe-path = "0.1.0" safe-path = "0.1.0"