[package]
edition = "2021"
name = "tayvo_optional_struct"
version = "0.2.0"
authors = [
"Paul Lesur <paul.lesur@plesur.fr>",
"Paul Makles <me@insrt.uk>",
]
build = false
exclude = [".travis.yml"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Crate defining a macro that will generate, from a structure, another structure with only Option<T> fields
"""
readme = "README.md"
keywords = [
"macro",
"configuration",
]
categories = ["config"]
license = "Apache-2.0"
repository = "https://github.com/tayvochat/OptionalStruct"
[lib]
name = "tayvo_optional_struct"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "derive"
path = "tests/derive.rs"
[[test]]
name = "empty"
path = "tests/empty.rs"
[[test]]
name = "generics"
path = "tests/generics.rs"
[[test]]
name = "nested"
path = "tests/nested.rs"
[[test]]
name = "renamed"
path = "tests/renamed.rs"
[[test]]
name = "serde"
path = "tests/serde.rs"
[[test]]
name = "simple"
path = "tests/simple.rs"
[[test]]
name = "simple_no_overrides"
path = "tests/simple_no_overrides.rs"
[dependencies.quote]
version = "0.3"
[dependencies.syn]
version = "0.11.11"
[dev-dependencies.serde]
version = "1.0.136"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0.79"