[package]
edition = "2021"
name = "derive_convert"
version = "0.7.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Derives 'impl (Try)From for Self' and 'impl (Try)From<Self>'"
readme = false
categories = ["rust-patterns"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/qthree/derive_convert"
[lib]
name = "derive_convert"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "from"
path = "tests/from.rs"
[[test]]
name = "try_from_enum"
path = "tests/try_from_enum.rs"
[[test]]
name = "try_from_ref"
path = "tests/try_from_ref.rs"
[[test]]
name = "try_from_self_enum"
path = "tests/try_from_self_enum.rs"
[[test]]
name = "try_from_self_struct"
path = "tests/try_from_self_struct.rs"
[[test]]
name = "try_from_struct"
path = "tests/try_from_struct.rs"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "1"
features = [
"full",
"extra-traits",
]