-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCargo.toml
37 lines (32 loc) · 877 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
34
35
36
37
[package]
name = "macro-attr"
version = "0.2.1"
authors = ["Daniel Keep <daniel.keep@gmail.com>"]
description = "This crate provides the `macro_attr!` macro that enables the use of custom, macro-based attributes and derivations. Supercedes the `custom_derive` crate."
repository = "/~https://github.com/DanielKeep/rust-custom-derive"
documentation = "https://docs.rs/crate/macro-attr/"
license = "MIT/Apache-2.0"
keywords = ["custom", "derive", "attribute", "macro"]
exclude = [
".cargo/*",
"local/*",
"doc-pkg/*",
"scripts/*",
".gitmodules",
".travis.yml",
"update-docs.py",
]
[workspace]
members = [
"enum_derive",
"newtype_derive",
"tests/derive-name-macro",
"tests/derive-name-proc",
"tests/derive-name-test",
]
[features]
default = ["std"]
std = []
unstable-macros-1-1 = []
[dev-dependencies]
rustc-serialize = "0.3.15"