-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathCargo.toml
27 lines (24 loc) · 785 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "reflect"
version = "0.0.14"
authors = ["David Tolnay <[email protected]>"]
categories = ["development-tools::procedural-macro-helpers"]
description = "The \"but I thought Rust doesn't have reflection?\" memorial brand new way of defining procedural macros."
documentation = "https://docs.rs/reflect"
edition = "2021"
keywords = ["reflection"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/dtolnay/reflect"
rust-version = "1.56"
[dependencies]
proc-macro2 = "1.0.63"
quote = "1.0.29"
ref-cast = "1.0.18"
reflect-internal = { version = "=0.0.14", path = "macros" }
syn = "2.0.23"
[workspace]
members = ["macros"]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]