forked from dtolnay/reflect
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
26 lines (23 loc) · 807 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
[package]
name = "reflect"
version = "0.0.8"
authors = ["Asbjørn Gaarde <[email protected]>", "David Tolnay <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "The \"but I thought Rust doesn't have reflection?\" memorial brand new way of defining procedural macros."
repository = "https://github.com/8BitMate/reflect"
documentation = "https://docs.rs/reflect"
keywords = ["reflection"]
categories = ["development-tools::procedural-macro-helpers"]
readme = "README.md"
edition = "2018"
[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
ref-cast = "1.0"
reflect-internal = { version = "0.0.8", path = "macros" }
syn = { version = "1.0", features = ["extra-traits"] }
fxhash = "0.2"
[workspace]
members = ["macros"]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]