[package] name = "rematch" version = "2.0.0" authors = ["Avril "] edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [profile.release] # We have multiple "crates" in this project, so fat LTO and single codegen for better inlining and cross-crate optimisation. opt-level = 3 lto = "fat" codegen-units = 1 panic = "unwind" [features] perl = ["pcre"] [dependencies] regex = "1" pcre = { version = "0.2.3", optional = true }