Skip to content

Commit

Permalink
deps: Disable unused/unnecessary regex features in libcontainer (#2781)
Browse files Browse the repository at this point in the history
To reduce binary size and dependency bloat in projects using libcontainer.

Signed-off-by: Jakub Jirutka <[email protected]>
  • Loading branch information
jirutka authored May 6, 2024
1 parent 5ecfda0 commit 96ff8c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/libcontainer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rust-criu = "0.4.0"
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"
tracing = { version = "0.1.40", features = ["attributes"] }
safe-path = "0.1.0"
Expand Down

0 comments on commit 96ff8c3

Please sign in to comment.