[package]
edition = "2024"
rust-version = "1.85.1"
name = "try_v2"
version = "0.3.1"
authors = ["Mike Foster <https://github.com/MusicalNinjaDad>"]
build = false
include = [
"/src/",
"/tests/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Provides a derive macro for `Try` ([try_trait_v2](https://rust-lang.github.io/rfcs/3058-try-trait-v2.html))"
homepage = "https://github.com/MusicalNinjaDad/try_v2"
readme = "README.md"
keywords = [
"derive",
"Try",
"try_trait_v2",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/MusicalNinjaDad/try_v2"
[lib]
name = "try_v2"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "test_compilation"
path = "tests/test_compilation.rs"
[[test]]
name = "test_usage"
path = "tests/test_usage.rs"
[dependencies.proc-macro2]
version = "1.0.106"
[dependencies.quote]
version = "1.0.45"
[dependencies.syn]
version = "2.0.117"
features = [
"full",
"extra-traits",
]
[dev-dependencies.trybuild]
version = "1.0.116"