Fortune for rematch's current commit: Great blessing − 大吉cli-refactor
parent
d9ad1bafdf
commit
0b04b94d0c
@ -1,20 +1,33 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rematch"
|
name = "rematch"
|
||||||
version = "0.1.0"
|
version = "1.0.0"
|
||||||
authors = ["Avril <flanchan@cumallover.me>"]
|
authors = ["Avril <flanchan@cumallover.me>"]
|
||||||
edition = "2018"
|
edition = "2024"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
lto = "fat"
|
lto = true
|
||||||
codegen-units = 1
|
codegen-units = 1
|
||||||
panic = "unwind"
|
panic = "unwind"
|
||||||
|
strip = true
|
||||||
|
|
||||||
|
[profile.symbols]
|
||||||
|
inherits = "release"
|
||||||
|
strip = false
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
perl = ["pcre"]
|
default = ["perl"]
|
||||||
|
|
||||||
|
# Enable the use of PCRE (extended matching) instead of Rust regexes.
|
||||||
|
perl = ["dep:pcre"]
|
||||||
|
|
||||||
|
unstable = ["regex/unstable"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
regex = "1"
|
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 }
|
pcre = { version = "0.2.3", optional = true }
|
||||||
|
rayon = "1.10.0"
|
||||||
|
regex = { version = "1.11.1", features = ["use_std"] }
|
||||||
|
Loading…
Reference in new issue