[package]
edition = "2024"
rust-version = "1.85"
name = "ferray-strings"
version = "0.4.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "String operations on character arrays for ferray"
homepage = "https://github.com/dollspace-gay/ferray"
readme = "README.md"
keywords = [
"numpy",
"ndarray",
"scientific-computing",
"simd",
"linear-algebra",
]
categories = [
"science",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dollspace-gay/ferray"
resolver = "2"
[features]
compact-storage = []
default = []
[lib]
name = "ferray_strings"
path = "src/lib.rs"
[[test]]
name = "conformance_array"
path = "tests/conformance_array.rs"
[[test]]
name = "conformance_search"
path = "tests/conformance_search.rs"
[[test]]
name = "conformance_str_ops"
path = "tests/conformance_str_ops.rs"
[[test]]
name = "conformance_surface_coverage"
path = "tests/conformance_surface_coverage.rs"
[[test]]
name = "empty_arrays"
path = "tests/empty_arrays.rs"
[[test]]
name = "oracle"
path = "tests/oracle.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[dependencies.ferray-core]
version = "0.4.0"
[dependencies.regex]
version = "1.12"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.proptest]
version = "1.11"
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.toml]
version = "0.8"