Compare commits
3 Commits
cli-refact
...
master
Author | SHA1 | Date |
---|---|---|
|
007ba8781c | 2 days ago |
|
6a74f54a26 | 2 days ago |
|
100b3a9afd | 2 days ago |
@ -1,20 +1,29 @@
|
||||
[package]
|
||||
name = "rematch"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
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
|
||||
|
||||
[profile.release]
|
||||
opt-level = 3
|
||||
lto = "fat"
|
||||
lto = true
|
||||
codegen-units = 1
|
||||
panic = "unwind"
|
||||
strip = true
|
||||
|
||||
[profile.symbols]
|
||||
inherits = "release"
|
||||
strip = false
|
||||
|
||||
[features]
|
||||
perl = ["pcre"]
|
||||
default= ["perl", "unstable"]
|
||||
|
||||
perl = ["dep:pcre2"]
|
||||
unstable = ["regex/unstable"]
|
||||
|
||||
[dependencies]
|
||||
regex = "1"
|
||||
pcre = { version = "0.2.3", optional = true }
|
||||
pcre2 = { version = "0.2.9", optional = true }
|
||||
regex = { version = "1.11.1", features = ["use_std"] }
|
||||
color-eyre = { version = "0.6.3", default-features = false, features = ["track-caller"] }
|
||||
|
Loading…
Reference in new issue