mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
* WIP start migrating usages of hash for cache invalidadion to dedicated trait * Finish migrating usages * Code review * Add comments clearifying the reasoning for using random ids in the VectorModification cach hash impl * Fix some remaining hash violations * Finish migration and fix compilation * Fix import ordering * Cleanup * Fix code review stuff --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
20 lines
419 B
TOML
20 lines
419 B
TOML
[package]
|
|
name = "graphene-hash-derive"
|
|
version = "0.0.0"
|
|
edition = "2024"
|
|
authors = ["Graphite Authors <contact@graphite.art>"]
|
|
description = "#[derive(CacheHash)]"
|
|
license = "MIT OR Apache-2.0"
|
|
publish = false
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = { workspace = true }
|
|
quote = { workspace = true }
|
|
syn = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
graphene-hash = { path = "..", features = ["derive"] }
|