[go: up one dir, main page]

onig 4.3.3

Rust-Onig is a set of Rust bindings for the Oniguruma regular expression library. Oniguruma is a modern regex library with support for multiple character encodings and regex syntaxes.
Documentation
[package]
name = "onig"
version = "4.3.3"
authors = [
    "Will Speak <will@willspeak.me>",
    "Ivan Ivashchenko <defuz@me.com>"
]

description = """
Rust-Onig is a set of Rust bindings for the
Oniguruma regular expression library. Oniguruma
is a modern regex library with support for
multiple character encodings and regex syntaxes.
"""
repository = "http://github.com/iwillspeak/rust-onig"
documentation = "https://docs.rs/onig/"
readme = "../README.md"
license = "MIT"

[features]
std-pattern = []
# include regexec()
posix-api = ["onig_sys/posix-api"]
# Make Oniguruma print debug output for parsing/compiling and executing
print-debug = ["onig_sys/print-debug"]

[dependencies]
bitflags = "1.0"
lazy_static = "1.2"

[target.'cfg(windows)'.dependencies]
libc = "0.2"

[dependencies.onig_sys]
version = "=69.1.0"
path = "../onig_sys"