-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 806 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 806 Bytes
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
33
[package]
name = "regexr"
version = "0.1.2"
edition = "2021"
authors = ["Farhan Syah"]
description = "A high-performance regex engine built from scratch with JIT compilation and SIMD acceleration"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ml-rust/regexr"
keywords = ["regex", "jit", "simd", "pattern-matching"]
categories = ["text-processing", "parsing"]
[features]
default = ["simd"]
jit = ["dynasm", "dynasmrt"]
simd = []
full = ["jit", "simd"]
[dependencies]
dynasm = { version = "2.0", optional = true }
dynasmrt = { version = "2.0", optional = true }
memchr = "2"
aho-corasick = "1"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
regex = "1"
fancy-regex = "0.14"
pcre2 = "0.2"
aho-corasick = "1"
[[bench]]
name = "competitors"
harness = false