[package]
edition = "2021"
rust-version = "1.71"
name = "reflect"
version = "0.0.16"
authors = ["David Tolnay <dtolnay@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """The "but I thought Rust doesn't have reflection?" memorial brand new way of defining procedural macros."""
documentation = "https://docs.rs/reflect"
readme = "README.md"
keywords = ["reflection"]
categories = ["development-tools::procedural-macro-helpers"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dtolnay/reflect"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = [
"--generate-link-to-definition",
"--generate-macro-expansion",
"--extern-html-root-url=core=https://doc.rust-lang.org",
"--extern-html-root-url=alloc=https://doc.rust-lang.org",
"--extern-html-root-url=std=https://doc.rust-lang.org",
]
[lib]
name = "reflect"
path = "src/lib.rs"
[[test]]
name = "test_debug"
path = "tests/test_debug.rs"
[[test]]
name = "test_displaydoc"
path = "tests/test_displaydoc.rs"
[[test]]
name = "test_field_access"
path = "tests/test_field_access.rs"
[[test]]
name = "test_generics"
path = "tests/test_generics.rs"
[[test]]
name = "test_parse_trait_objects"
path = "tests/test_parse_trait_objects.rs"
[[test]]
name = "test_tuple"
path = "tests/test_tuple.rs"
[[test]]
name = "test_zero_args"
path = "tests/test_zero_args.rs"
[dependencies.proc-macro2]
version = "1.0.63"
[dependencies.quote]
version = "1.0.29"
[dependencies.ref-cast]
version = "1.0.18"
[dependencies.reflect-internal]
version = "=0.0.16"
[dependencies.syn]
version = "3"