mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-04 13:30:48 +00:00

* First draft of factoring out the dropdown boilerplate * Add proc macro for enum boilerplate * Detect whether to say `crate` or the name * Clean up the input and naming of the enum macro * Rename a file * Do the rename of code too * Use the attribute-driven selection of radio vs dropdown * Add a metadata struct and tooltips * Move the new traits to a better place. * Use ChoiceType, part 1 * Use ChoiceType, part 2 * Introduce a builder API for choice widgets * Start using the new new API * DomainWarpType should be a dropdown still * Handle the case where a node property can never have a socket * Rustfmt * Code review * Update stable node IDs in test --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
33 lines
743 B
TOML
33 lines
743 B
TOML
[package]
|
|
name = "graphite-proc-macros"
|
|
publish = false
|
|
version = "0.0.0"
|
|
rust-version = "1.85"
|
|
authors = ["Graphite Authors <contact@graphite.rs>"]
|
|
edition = "2024"
|
|
readme = "../README.md"
|
|
homepage = "https://graphite.rs"
|
|
repository = "https://github.com/GraphiteEditor/Graphite"
|
|
license = "Apache-2.0"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
proc-macro = true
|
|
|
|
[features]
|
|
default = ["serde-discriminant"]
|
|
serde-discriminant = []
|
|
|
|
[dependencies]
|
|
# Workspace dependencies
|
|
proc-macro2 = { workspace = true }
|
|
syn = { workspace = true }
|
|
quote = { workspace = true }
|
|
convert_case = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
# Local dependencies
|
|
editor = { path = "../editor", package = "graphite-editor" }
|
|
|
|
# Workspace dependencies
|
|
serde = { workspace = true }
|