[badges.maintenance]
status = "actively-developed"
[lib]
name = "clear_cache"
path = "src/lib.rs"
[package]
authors = ["Evian-Zhang <evianzhang1999@163.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["no-std"]
description = "A native implementation of `__builtin___clear_cache` without dependency of GCC/Clang."
documentation = "https://docs.rs/clear-cache"
edition = "2021"
homepage = "https://github.com/Evian-Zhang/clear-cache"
keywords = ["cache", "clear-cache"]
license = "MIT OR Apache-2.0"
name = "clear-cache"
readme = "README.md"
repository = "https://github.com/Evian-Zhang/clear-cache"
version = "0.1.0"
[target.'cfg(target_os = "linux")'.dependencies.libc]
default-features = false
version = "0.2"
[target.'cfg(target_os = "windows")'.dependencies.windows]
features = ["Win32_System_Threading", "Win32_System_Diagnostics_Debug"]
version = "0.58"
[[test]]
name = "basic"
path = "tests/basic.rs"