-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 702 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 702 Bytes
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
[package]
name = "derive_wrapper"
version = "0.1.7"
authors = ["Elichai Turkel <elichai.turkel@gmail.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
description = "Rust custom derive macro for wrapping types"
categories = ["no-std", "data-structures"]
keywords = ["derive", "wrap", "macro", "custom-derive", "display_from"]
repository = "https://github.com/elichai/derive-wrapper"
include = [
"**/*.rs",
"Cargo.toml",
]
[dependencies]
#syn = { version = "0.15", features = ["full", "extra-traits", "derive"] } # -> For development
syn = "0.15"
quote = "0.6"
[features]
default = ["std"]
std = []
[lib]
proc-macro = true
[badges]
travis-ci = { repository = "elichai/derive-wrapper" }