# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "regress" version = "0.10.1" authors = ["ridiculousfish "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A regular expression engine targeting EcmaScript syntax" readme = "README.md" keywords = [ "regex", "regexp", ] license = "MIT OR Apache-2.0" repository = "https://github.com/ridiculousfish/regress" [profile.release] [lib] name = "regress" path = "src/lib.rs" [[test]] name = "pcre_tests" path = "tests/pcre_tests.rs" [[test]] name = "syntax_error_tests" path = "tests/syntax_error_tests.rs" [[test]] name = "tests" path = "tests/tests.rs" [[test]] name = "unicode_property_escapes" path = "tests/unicode_property_escapes.rs" [[test]] name = "unicodesets" path = "tests/unicodesets.rs" [dependencies.hashbrown] version = "0.14.3" [dependencies.memchr] version = "2.4.0" default-features = false [features] backend-pikevm = [] default = [ "backend-pikevm", "std", ] index-positions = [] prohibit-unsafe = [] std = ["memchr/std"] utf16 = []