mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
* Add node graph frame tool * Add a brighten * Use the node graph * Fix topological_sort * Update UI * Add icons for the tool and layer type * Avoid serde & use bitmaps to improve performance * Allow serialising a node graph * Fix missing ..Default::default() * Fix incorrect comments * Cache node graph output image * Suppress no-cycle import warning Co-authored-by: Keavon Chambers <keavon@keavon.com>
22 lines
539 B
TOML
22 lines
539 B
TOML
[package]
|
|
name = "graph-craft"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
graphene-core = { path = "../gcore", features = ["async", "std"] }
|
|
graphene-std = { path = "../gstd" }
|
|
dyn-any = { path = "../../libraries/dyn-any" }
|
|
num-traits = "0.2"
|
|
borrow_stack = { path = "../borrow_stack" }
|
|
dyn-clone = "1.0"
|
|
rand_chacha = "0.3.1"
|
|
|
|
[dependencies.serde]
|
|
version = "1.0"
|
|
optional = true
|
|
features = ["derive"]
|