[package]
edition = "2021"
rust-version = "1.78.0"
name = "simdutf"
version = "0.7.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unicode validation and transcoding at billions of characters per second"
readme = "README.md"
keywords = [
"utf8",
"unicode",
"string",
"validation",
"simd",
]
categories = [
"encoding",
"algorithms",
"no-std",
"text-processing",
]
license = "MIT"
repository = "https://github.com/Nugine/simdutf-rs"
[package.metadata.docs.rs]
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "simdutf"
path = "src/lib.rs"
[[test]]
name = "base64"
path = "tests/base64.rs"
[[test]]
name = "transcoding"
path = "tests/transcoding.rs"
[[test]]
name = "validatation"
path = "tests/validatation.rs"
[dependencies.bitflags]
version = "2.10.0"
[build-dependencies.cc]
version = "1.2.55"
[profile.release]
lto = "fat"