[package] name = "hitori" categories = ["text-processing"] description = "Generic compile-time regular expressions" documentation = "https://docs.rs/hitori" keywords = ["regex"] readme = "../README.md" version.workspace = true authors.workspace = true edition.workspace = true license.workspace = true repository.workspace = true rust-version.workspace = true [features] default = ["alloc", "macros"] # string replace functions and blanket implementations # of hitori traits for boxes using alloc crate. alloc = [] # `impl_expr_mut` and `impl_expr` macros. macros = ["hitori-macros"] # finds hitori package to be used in macros even if # it has been renamed in Cargo.toml. `macros` is required. find-hitori = ["hitori-macros?/find-hitori"] [dependencies] hitori-macros = { version = "=0.2.3", path = "../hitori-macros", optional = true } [dev-dependencies] regex = "1.7.3"