regexpr 0.4.0

Regular expresions
Documentation
# 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 = "2024"
name = "regexpr"
version = "0.4.0"
authors = ["Saúl Valdelvira <saul@saulv.es>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Regular expresions"
readme = "README"
license = "MIT"
repository = "https://github.com/saulvaldelvira/regexpr"

[features]
bindings = ["dep:cbindgen"]
default = ["std"]
gui = ["dep:fltk"]
std = []
use-bundled-fltk = ["fltk/fltk-bundled"]

[lib]
name = "regexpr"
crate-type = [
    "lib",
    "cdylib",
    "staticlib",
]
path = "src/lib.rs"

[[bin]]
name = "regexpr"
path = "src/main.rs"

[[example]]
name = "example"
path = "examples/example.rs"

[[bench]]
name = "benches"
path = "benches/benches.rs"

[dependencies.fltk]
version = "1.4"
optional = true

[build-dependencies.cbindgen]
version = ">=0.27.0"
optional = true
default-features = false