[package]
edition = "2024"
name = "match-wrap"
version = "0.1.1"
authors = ["Callum Leslie <git@cleslie.uk>"]
build = false
exclude = [
"flake.nix",
"flake.lock",
".envrc",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Wrap incompatible match arms with a trait object container"
homepage = "https://github.com/callumio/match-wrap"
documentation = "https://docs.rs/match-wrap"
readme = "README.md"
keywords = []
categories = []
license = "MIT"
repository = "https://github.com/callumio/match-wrap"
[lib]
name = "match_wrap"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = [
"full",
"parsing",
"proc-macro",
"printing",
]
default-features = false