regress 0.1.4

A regular expression engine targeting EcmaScript syntax
Documentation
[package]
name = "regress"
version = "0.1.4"
authors = ["ridiculousfish <corydoras@ridiculousfish.com>"]
description = "A regular expression engine targeting EcmaScript syntax"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ridiculousfish/regress"
keywords = ["regex", "regexp"]
edition = "2018"
readme = "README.md"

[profile.release]

[features]
default = ["backend-pikevm"]

# Exposes flags for dumping IR and bytecode, useful for debugging or optimization.
dump-phases = []

# Enables the PikeVM backend.
backend-pikevm = []

# Prohibits all uses of unsafe code, for the paranoid.
prohibit-unsafe = []

[dependencies]
memchr = "2.3.3"