inspect-rs 0.1.0

Universal introspection for Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "inspect-rs"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Universal introspection for Rust"
documentation = "https://docs.rs/inspect-rs"
readme = "README.md"
keywords = [
    "introspection",
    "reflection",
    "debugging",
    "tooling",
    "inspect",
]
categories = [
    "development-tools::debugging",
    "rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/programmersd21/inspect-rs"

[features]
color = ["inspect-format/color"]
default = ["color"]

[lib]
name = "inspect_rs"
path = "src/lib.rs"

[[example]]
name = "attributes"
path = "examples/attributes.rs"

[[example]]
name = "basic"
path = "examples/basic.rs"

[[example]]
name = "collections"
path = "examples/collections.rs"

[[example]]
name = "colored"
path = "examples/colored.rs"

[[example]]
name = "custom"
path = "examples/custom.rs"

[[example]]
name = "enums"
path = "examples/enums.rs"

[[example]]
name = "nested"
path = "examples/nested.rs"

[[test]]
name = "collections"
path = "tests/collections.rs"

[[test]]
name = "color"
path = "tests/color.rs"

[[test]]
name = "derive"
path = "tests/derive.rs"

[[test]]
name = "enums"
path = "tests/enums.rs"

[[test]]
name = "formatting"
path = "tests/formatting.rs"

[[test]]
name = "limits"
path = "tests/limits.rs"

[[test]]
name = "primitives"
path = "tests/primitives.rs"

[[bench]]
name = "formatting"
path = "benches/formatting.rs"
harness = false

[[bench]]
name = "inspection"
path = "benches/inspection.rs"
harness = false

[dependencies.inspect-core]
version = "0.1.0"

[dependencies.inspect-derive]
version = "0.1.0"

[dependencies.inspect-format]
version = "0.1.0"
default-features = false

[dev-dependencies.criterion]
version = "0.5"

[lints.rust]
unsafe_code = "forbid"