[package]
name = "extendable-data"
version.workspace = true
authors.workspace = true
license.workspace = true
categories.workspace = true
keywords.workspace = true
repository.workspace = true
edition.workspace = true
description = "A set of rust macros that allows you to specify data that can be \"extended\" or inherited from."

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[workspace]
members = ["extendable-data-helpers"]

[workspace.package]
version = "0.1.5"
authors = ["Rafael Dulfer"]
repository = "https://github.com/Rafaeltheraven/extendable-data"
license = "MIT"
edition = "2021"
keywords = ["proc-macro", "extensible", "structs", "enums", "unions"]
categories = ["data-structures", "development-tools::procedural-macro-helpers", "rust-patterns"]

[workspace.dependencies]
syn = "2.0.18"
quote = "1.0.28"
proc-macro2 = "1.0.59"

[dependencies]
syn = {workspace = true}
quote = {workspace = true}
proc-macro2 = {workspace = true}
extendable-data-helpers = "0.1.5"

[dev-dependencies]
syn = {version = "2.0.18", features = ["extra-traits"]}
assert-tokenstreams-eq = "0.1.0"