forked from amethyst/amethyst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (27 loc) · 947 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
28
29
30
31
32
33
[package]
name = "amethyst_derive"
version = "0.8.1"
authors = ["Simon Rönnberg <[email protected]>", "Amethyst Foundation <[email protected]>"]
edition = "2018"
description = "Amethyst derive"
documentation = "https://docs.amethyst.rs/stable/amethyst_derive/"
homepage = "https://amethyst.rs/"
repository = "https://github.com/amethyst/amethyst"
license = "MIT/Apache-2.0"
[badges]
travis-ci = { repository = "amethyst/amethyst" }
[dependencies]
heck = "0.3.1"
syn = { version = "1.0", features = ["full", "visit"] }
quote = "1.0"
proc-macro2 = "1.0"
proc_macro_roids = "0.7"
proc-macro-crate = "0.1"
[dev-dependencies]
amethyst_core = { path = "../amethyst_core", version = "0.10.0" }
amethyst_assets = { path = "../amethyst_assets", version = "0.11.0" }
amethyst_error = { path = "../amethyst_error", version = "0.5.0" }
amethyst_test = { path = "../amethyst_test", version = "0.6.0" }
[lib]
name = "amethyst_derive"
proc-macro = true