Skip to content

Commit

Permalink
Disable most of default regex features
Browse files Browse the repository at this point in the history
regex as used by Sentry doesn't need full Unicode tables, just
ones used by \w, \s, \d and \b.
  • Loading branch information
KamilaBorowska committed Feb 12, 2023
1 parent 8a85d25 commit 42b1c48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sentry-backtrace/Cargo.toml
Expand Up @@ -15,5 +15,5 @@ rust-version = "1.60"
[dependencies]
backtrace = "0.3.44"
once_cell = "1"
regex = "1.5.5"
regex = { version = "1.5.5", default-features = false, features = ["std", "unicode-perl"] }
sentry-core = { version = "0.29.3", path = "../sentry-core" }

0 comments on commit 42b1c48

Please sign in to comment.