[package]
edition = "2024"
name = "flexstr_support"
version = "0.1.4"
authors = ["Scott Meeuwsen <smeeuwsen@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Support crate for 'flexstr' and 'inline_flexstr'"
documentation = "https://docs.rs/flexstr_support"
readme = "README.md"
keywords = [
"string",
"support",
]
categories = [
"data-structures",
"memory-management",
"no-std",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/nu11ptr/flexstr/flexstr_support"
[package.metadata.docs.rs]
features = [
"bytes",
"cstr",
"osstr",
"path",
"serde",
"std",
"str",
]
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
bytes = []
cstr = []
default = [
"std",
"str",
]
osstr = ["std"]
path = ["osstr"]
safe = []
std = []
str = []
win_min_unsafe = ["safe"]
[lib]
name = "flexstr_support"
path = "src/lib.rs"