You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
432 B
TOML
23 lines
432 B
TOML
[package]
|
|
name = "enumscribe_derive"
|
|
version = "0.4.0"
|
|
authors = ["Tom Panton <pantonshire@gmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT"
|
|
repository = "https://github.com/pantonshire/enumscribe"
|
|
readme = "README.md"
|
|
description = "Derive macros for converting between enums and strings"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0"
|
|
syn = "1.0"
|
|
quote = "1.0"
|
|
|
|
[features]
|
|
default = ["std", "serde"]
|
|
std = []
|
|
serde = []
|