makepad/libs/live_id/Cargo.toml
Kevin Boos b5de1c3060
Add optional serde derives for Serialization/Deserialization on select public types (#831)
Can be activated by setting the "serde" feature on `makepad-widgets`
(or other internal crates).
2025-12-18 08:38:58 +01:00

21 lines
694 B
TOML

[package]
name = "makepad-live-id"
version = "1.0.0"
authors = ["Makepad <info@makepad.nl>"]
edition = "2021"
description = "Makepad live id symbol interning"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/makepad/makepad/"
repository = "https://github.com/makepad/makepad/"
metadata.makepad-auto-version = "Fjf_rJTOgvZXwyU7Yb-CZMF6Hmo="
[dependencies]
makepad-live-id-macros = { path = "id_macros", version = "1.0.0" }
#makepad-error-log = { path = "../error_log", version = "0.4.0" }
serde = { version = "1.0", optional = true, features = ["derive"] }
[features]
default = []
## Enables certain public-facing types to derive serde serialization traits.
serde = ["dep:serde"]