tagset 0.1.3

Easily create trait-dispatching sum types
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 = "tagset"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Easily create trait-dispatching sum types"
readme = "README.md"
keywords = [
    "macro",
    "generator",
    "reflection",
    "compile-time",
    "serde",
]
categories = [
    "rust-patterns",
    "development-tools::procedural-macro-helpers",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/colinjneville/tagset"
resolver = "2"

[features]
default = ["serde"]
serde = ["dep:serde"]

[lib]
name = "tagset"
path = "src/lib.rs"

[[test]]
name = "attr"
path = "tests/attr.rs"

[[test]]
name = "from"
path = "tests/from.rs"

[[test]]
name = "macros"
path = "tests/macros.rs"

[[test]]
name = "meta"
path = "tests/meta.rs"

[[test]]
name = "serde_roundtrip"
path = "tests/serde_roundtrip.rs"

[dependencies.paste]
version = "1.0.15"

[dependencies.serde]
version = "1.0.189"
features = [
    "std",
    "derive",
    "rc",
]
optional = true

[dependencies.tagset-macro]
version = "0.1.3"

[dependencies.telety]
version = "0.4"

[dev-dependencies.anyhow]
version = "1.0.98"

[dev-dependencies.serde_json]
version = "1.0.134"

[dev-dependencies.telety]
version = "0.4"