enum_traits_macros 4.0.0

Procedural macros adding functionality to enums. Derives traits from the crate `enum_traits`
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "enum_traits_macros"
version = "4.0.0"
authors = ["Lolirofle <lolipopple@hotmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros adding functionality to enums. Derives traits from the crate `enum_traits`"
documentation = "https://docs.rs/enum_traits"
readme = "README.md"
keywords = [
    "enum",
    "trait",
    "derive",
    "proc-macros",
    "macro",
]
categories = ["development-tools::procedural-macro-helpers"]
license = "MIT"
repository = "https://github.com/Lolirofle/enum_traits.git"

[package.metadata.docs.rs]
rustdoc-args = ["--document-private-items"]

[features]
default = [
    "ends",
    "from_discriminant",
    "from_index",
    "from_variant_fields",
    "from_variant_name",
    "index",
    "is_variant_fns",
    "iter",
    "iterator",
    "len",
    "tag",
    "to_index",
    "variant_name",
    "step",
]
ends = []
field_structs = []
from_discriminant = []
from_index = []
from_variant_fields = []
from_variant_name = []
index = []
is_variant_fns = []
iter = []
iterator = []
len = []
step = []
tag = []
to_index = []
variant_name = []

[lib]
name = "enum_traits_macros"
path = "src/lib.rs"
proc-macro = true

[dependencies.proc-macro2]
version = "1.0"

[dependencies.quote]
version = "1.0"

[dependencies.syn]
version = "3.0"
features = [
    "full",
    "visit",
]

[dev-dependencies]