36 lines
957 B
TOML
36 lines
957 B
TOML
[package]
|
|
name = "strum"
|
|
version = "0.28.0"
|
|
edition = "2021"
|
|
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"
|
|
rust-version = "1.71"
|
|
|
|
[dependencies]
|
|
strum_macros = { path = "../strum_macros", optional = true, version = "0.28" }
|
|
phf = { version = "0.13", features = ["macros"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
strum_macros = { path = "../strum_macros" }
|
|
|
|
[badges]
|
|
travis-ci = { repository = "Peternator7/strum" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
derive = ["strum_macros"]
|
|
std = []
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["derive"]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|