mirror of
https://github.com/danog/strum.git
synced 2024-12-04 02:17:56 +01:00
db5071874b
* Added std feature to allow for no_std usage * added no_std attr Co-authored-by: Luctius <luctius@gmail.com>
34 lines
886 B
TOML
34 lines
886 B
TOML
[package]
|
|
name = "strum"
|
|
version = "0.21.0"
|
|
edition = "2018"
|
|
authors = ["Peter Glotfelty <peter.glotfelty@microsoft.com>"]
|
|
license = "MIT"
|
|
|
|
description = "Helpful macros for working with enums and strings"
|
|
keywords = ["enum", "string", "macros", "proc-macros"]
|
|
categories = ["development-tools::procedural-macro-helpers", "parsing"]
|
|
|
|
documentation = "https://docs.rs/strum"
|
|
homepage = "https://github.com/Peternator7/strum"
|
|
repository = "https://github.com/Peternator7/strum"
|
|
readme = "../README.md"
|
|
|
|
[dependencies]
|
|
strum_macros = { path = "../strum_macros", optional = true, version = "0.21" }
|
|
|
|
[dev-dependencies]
|
|
strum_macros = { path = "../strum_macros", version = "0.21" }
|
|
|
|
[badges]
|
|
travis-ci = { repository = "Peternator7/strum" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
derive = ["strum_macros"]
|
|
std = []
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["derive"]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|