1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
[package]
name = "regex-cursor"
description = "regex fork that can search discontiguous haystacks"
version = "0.1.5"
edition = "2021"
documentation = "https://docs.rs/regex-cursor"
author = "Pascal Kuthe <pascalkuthe@pm.me>"
repository = "https://github.com/pascalkuthe/regex-cursor"
readme = "README.md"
keywords = ["regex", "dfa", "automata", "automaton", "nfa"]
license = "MIT OR Apache-2.0"
categories = ["text-processing"]
rust-version = "1.65"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4.22"
memchr = "2.7"
regex-automata = "0.4.7"
regex-syntax = "0.8.4"
ropey = { version = "1.6.1", default-features = false, optional = true }
[dev-dependencies]
anyhow = "1.0.89"
proptest = "1.5.0"
regex-test = "0.1.1"
[features]
default = ["perf-inline", "ropey"]
perf-inline = []
ropey = ["dep:ropey"]
|