[package] name = "mem_tools" version = "0.6.0" edition = "2021" authors = [ "Kostiantyn Wandalen ", "Dmytro Kryvoruchko ", ] license = "MIT" readme = "Readme.md" documentation = "https://docs.rs/mem_tools" repository = "https://github.com/Wandalen/wTools/tree/master/module/core/mem_tools" homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/mem_tools" description = """ Collection of tools to manipulate memory. """ categories = [ "algorithms", "development-tools" ] keywords = [ "fundamental", "general-purpose" ] [lints] workspace = true [package.metadata.docs.rs] features = [ "full" ] all-features = false # exclude = [ "/tests", "/examples", "-*" ] include = [ "/rust/impl/mem", "/Cargo.toml", "/Readme.md", "/License", ] [features] default = [ "enabled", ] full = [ "use_alloc", "enabled", ] no_std = [] use_alloc = [ "no_std" ] enabled = [] [dependencies] [dev-dependencies] test_tools = { workspace = true }