mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-03 13:02:20 +00:00

* Fix clippy lints * Update formatting * Remove unsafe send impls * New type for Rc<NodeContainer>
31 lines
626 B
TOML
31 lines
626 B
TOML
[package]
|
|
name = "graphite-proc-macros"
|
|
publish = false
|
|
version = "0.0.0"
|
|
rust-version = "1.66.0"
|
|
authors = ["Graphite Authors <contact@graphite.rs>"]
|
|
edition = "2021"
|
|
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]
|
|
proc-macro2 = "1"
|
|
syn = { version = "1.0.68", features = ["full"] }
|
|
quote = "1.0.9"
|
|
|
|
[dev-dependencies.editor]
|
|
path = "../editor"
|
|
package = "graphite-editor"
|
|
|
|
[dev-dependencies]
|
|
serde = "1"
|