[package]
edition = "2024"
name = "v_escape-base"
version = "0.1.0"
authors = ["Juan Aguilar Santillana <mhpoin@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Base runtime for v_escape: SIMD-accelerated string escaping primitives."
documentation = "https://docs.rs/v_escape-base"
readme = "README.md"
keywords = [
"escape",
"simd",
"html",
"json",
"latex",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/zzau13/v_escape"
resolver = "2"
[package.metadata.docs.rs]
features = [
"std",
"alloc",
"string",
"fmt",
"bytes",
]
[features]
alloc = []
bytes = []
default = [
"std",
"bytes",
"string",
"fmt",
]
fmt = []
std = ["alloc"]
string = []
[lib]
name = "v_escape_base"
path = "src/lib.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[[test]]
name = "sys_info"
path = "tests/sys_info.rs"