[package]
edition = "2021"
rust-version = "1.81.0"
name = "os_str_bytes"
version = "7.2.0"
authors = ["dylni"]
build = false
exclude = [
".*",
"tests.rs",
"/rustfmt.toml",
"/src/bin",
"/tests",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Lossless functionality for platform-native strings
"""
readme = "README.md"
keywords = [
"bytes",
"osstr",
"osstring",
"path",
"windows",
]
categories = [
"command-line-interface",
"development-tools::ffi",
"encoding",
"os",
"rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dylni/os_str_bytes"
[package.metadata.docs.rs]
all-features = true
rustc-args = [
"--cfg",
"os_str_bytes_docs_rs",
]
rustdoc-args = [
"--cfg",
"os_str_bytes_docs_rs",
]
[features]
checked_conversions = ["conversions"]
conversions = []
default = [
"memchr",
"raw_os_str",
]
raw_os_str = []
[lib]
name = "os_str_bytes"
path = "src/lib.rs"
[dependencies.memchr]
version = "2.3.5"
optional = true
[dev-dependencies.fastrand]
version = "2.0"
[dev-dependencies.lazy_static]
version = "1.0.3"
[dev-dependencies.tempfile]
version = "3.8"