[package]
edition = "2024"
name = "windy"
version = "0.3.0"
authors = ["takubokudori <takubokudori@gmail.com>"]
build = false
exclude = [
".gitignore",
"examples/**",
".github/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Windows strings library that supports AString (ANSI string) and WString (Unicode string)"
homepage = "https://github.com/takubokudori/windy"
readme = "README.md"
keywords = [
"windows",
"ansi",
"unicode",
"multibyte",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/takubokudori/windy"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
[features]
debug_insufficient_buffer = []
default = ["std"]
std = []
[lib]
name = "windy"
path = "src/lib.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[[bench]]
name = "string"
path = "benches/string.rs"
harness = false
[dev-dependencies.criterion]
version = "0.8"