29 lines
665 B
TOML
29 lines
665 B
TOML
[package]
|
|
name = "dyn-any-derive"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
authors = ["Graphite Authors <contact@graphite.rs>"]
|
|
|
|
description = "#[derive(DynAny)]"
|
|
documentation = "https://docs.rs/dyn-any-derive"
|
|
repository = "https://github.com/GraphiteEditor/Graphite/tree/master/libraries/dyn-any/derive"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "../README.md"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = { workspace = true }
|
|
quote = { workspace = true }
|
|
syn = { workspace = true, default-features = false, features = [
|
|
"derive",
|
|
"parsing",
|
|
"proc-macro",
|
|
"printing",
|
|
"clone-impls",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
dyn-any = { path = "..", features = ["derive"] }
|