Can be activated by setting the "serde" feature on `makepad-widgets` (or other internal crates).
21 lines
694 B
TOML
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"]
|