[package]
edition = "2024"
rust-version = "1.98"
name = "wtf-string"
version = "0.1.0"
authors = ["Mike Grier"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OsString-shaped strings with native, conversion-free u16 (WTF-16) storage for Windows FFI."
homepage = "https://github.com/MikeGrier/windows-threadpool-sys"
documentation = "https://docs.rs/wtf-string"
readme = "README.md"
keywords = [
"windows",
"utf-16",
"wtf-16",
"osstring",
"ffi",
]
categories = [
"encoding",
"os::windows-apis",
"text-processing",
]
license = "MIT"
repository = "https://github.com/MikeGrier/windows-threadpool-sys"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
default-target = "x86_64-pc-windows-msvc"
targets = ["x86_64-pc-windows-msvc"]
[features]
default = ["std"]
std = ["windows-core?/std"]
windows-core = ["dep:windows-core"]
[lib]
name = "wtf_string"
path = "src/lib.rs"
[[example]]
name = "win32_round_trip"
path = "examples/win32_round_trip.rs"
[[test]]
name = "os_str_interop"
path = "tests/os_str_interop.rs"
[dependencies.windows-core]
version = "0.62.2"
optional = true
default-features = false