[build-dependencies.rustc_version]
version = "0.4"
[dependencies]
[dev-dependencies.test_tools]
version = "~0.9.0"
[[example]]
name = "inspect_type_trivial"
path = "examples/inspect_type_trivial.rs"
[features]
default = ["enabled"]
enabled = []
full = ["enabled"]
[lib]
name = "inspect_type"
path = "src/lib.rs"
[lints.clippy]
absolute_paths = "allow"
inline_always = "allow"
module_name_repetitions = "allow"
pedantic = "warn"
restriction = "warn"
single_call_fn = "allow"
std_instead_of_alloc = "warn"
std_instead_of_core = "warn"
undocumented_unsafe_blocks = "deny"
[lints.rust]
future_incompatible = "deny"
missing_debug_implementations = "warn"
missing_docs = "warn"
rust_2018_idioms = "deny"
unsafe-code = "warn"
[package]
authors = ["Kostiantyn Wandalen <wandalen@obox.systems>", "Dmytro Kryvoruchko <dmytro.kr@obox.systems>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = "build.rs"
categories = ["algorithms", "development-tools"]
description = """
Diagnostic-purpose tools to inspect type of a variable and its size.
"""
documentation = "https://docs.rs/inspect_type"
edition = "2021"
homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/inspect_type"
keywords = ["fundamental", "general-purpose", "diagnostic-purpose"]
license = "MIT"
name = "inspect_type"
readme = "Readme.md"
repository = "https://github.com/Wandalen/wTools/tree/master/module/core/inspect_type"
version = "0.11.0"
[package.metadata.docs.rs]
all-features = false
features = ["full"]
[[test]]
name = "smoke_test"
path = "tests/smoke_test.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"