[package] name = "typing_tools" version = "0.8.0" edition = "2021" authors = [ "Kostiantyn Wandalen ", "Dmytro Kryvoruchko ", ] license = "MIT" readme = "Readme.md" documentation = "https://docs.rs/typing_tools" repository = "https://github.com/Wandalen/wTools/tree/master/module/core/typing_tools" homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/typing_tools" description = """ Collection of general purpose tools for type checking. """ categories = [ "algorithms", "development-tools" ] keywords = [ "fundamental", "general-purpose" ] [lints] workspace = true [package.metadata.docs.rs] features = [ "full" ] all-features = false # exclude = [ "/tests", "/examples", "-*" ] [features] default = [ "enabled", "typing_implements", "typing_is_slice", "typing_inspect_type", # "nightly", ] full = [ "enabled", "typing_implements", "typing_is_slice", "typing_inspect_type", # "nightly", ] no_std = [] use_alloc = [ "no_std" ] enabled = [] typing_inspect_type = [ "inspect_type/enabled" ] typing_is_slice = [ "is_slice/enabled" ] typing_implements = [ "implements/enabled" ] # nightly = [ "inspect_type/nightly" ] [dependencies] ## internal inspect_type = { workspace = true } is_slice = { workspace = true } implements = { workspace = true } [dev-dependencies] test_tools = { workspace = true }