mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
* Add proc-macro crate with two macros * Let cargo recalculate the Cargo.lock * Add tests and refactor some code to allow testing also the impl for parse_hint_helper_attrs now preserves order (which is essential for testing)
20 lines
347 B
TOML
20 lines
347 B
TOML
[package]
|
|
name = "graphite-proc-macros"
|
|
version = "0.1.0"
|
|
authors = ["Graphite Authors <contact@graphite.design>"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0.26"
|
|
syn = "1.0.68"
|
|
quote = "1.0.9"
|
|
|
|
[dev-dependencies.editor-core]
|
|
path = "../editor"
|
|
package = "graphite-editor-core"
|