]> git.proxmox.com Git - rustc.git/blob - src/vendor/custom_derive/Cargo.toml
New upstream version 1.22.1+dfsg1
[rustc.git] / src / vendor / custom_derive / Cargo.toml
1 [package]
2 name = "custom_derive"
3 version = "0.1.7"
4 authors = ["Daniel Keep <daniel.keep@gmail.com>"]
5
6 description = "(Note: superseded by `macro-attr`) This crate provides a macro that enables the use of custom derive attributes."
7 repository = "https://github.com/DanielKeep/rust-custom-derive/tree/custom_derive-master"
8 documentation = "https://docs.rs/crate/custom_derive/"
9 license = "MIT/Apache-2.0"
10 keywords = ["custom", "derive", "macro"]
11
12 exclude = [
13 ".cargo/*",
14 "local/*",
15 "doc-pkg/*",
16 "scripts/*",
17 ".gitmodules",
18 ".travis.yml",
19 "update-docs.py",
20 ]
21
22 [workspace]
23 members = [
24 "enum_derive",
25 "newtype_derive",
26 ]
27
28 [features]
29 default = ["std"]
30 std = []
31
32 [dev-dependencies]
33 rustc-serialize = "0.3.15"