23 lines
704 B
TOML
23 lines
704 B
TOML
[package]
|
|
name = "makepad-derive-widget"
|
|
version = "2.0.0"
|
|
authors = ["Makepad <info@makepad.nl>"]
|
|
edition = "2021"
|
|
description = "Makepad widget derive macros"
|
|
license = "MIT OR Apache-2.0"
|
|
homepage = "https://github.com/makepad/makepad/"
|
|
repository = "https://github.com/makepad/makepad/"
|
|
metadata.makepad-auto-version = "dFoAj28MCO5aU_25X_xxuF1WYxA="
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
makepad-micro-proc-macro = { path = "../../libs/micro_proc_macro", version = "1.0.0" }
|
|
makepad-live-id = { path = "../../libs/live_id", version = "1.0.0" }
|
|
|
|
[features]
|
|
default = ["nightly"]
|
|
nightly = []
|
|
## Enables deriving serde (de)serialization traits for the LiveId type.
|
|
serde = ["makepad-live-id/serde"]
|