Skip to content

Commit

Permalink
deps: Disable unused/unnecessary regex features in libcontainer
Browse files Browse the repository at this point in the history
To reduce binary size and dependency bloat in projects using libcontainer.
  • Loading branch information
jirutka committed May 5, 2024
1 parent 30e3ab5 commit 604d5c5
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 604d5c5

Please sign in to comment.