You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
798 B
34 lines
798 B
[package]
|
|
name = "rematch"
|
|
version = "1.0.0"
|
|
authors = ["Avril <flanchan@cumallover.me>"]
|
|
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"] }
|