[package] name = "rematch" version = "1.0.0" authors = ["Avril "] edition = "2024" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [profile.release] opt-level = 3 lto = true codegen-units = 1 panic = "unwind" strip = true [profile.symbols] inherits = "release" strip = false [features] default = ["perl"] # Enable the use of PCRE (extended matching) instead of Rust regexes. perl = ["dep:pcre"] unstable = ["regex/unstable"] [dependencies] clap = { version = "4.5.34", features = ["derive", "env", "string"] } color-eyre = { version = "0.6.3", default-features = false, features = ["track-caller"] } pcre = { version = "0.2.3", optional = true } rayon = "1.10.0" regex = { version = "1.11.1", features = ["use_std"] }