mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-16 23:08:05 +08:00
* Move the Subpath type to graphene-std * Add the transform subpath node * Delete selected nodes * Inserting node list on right click * Add several bitmap manipulator nodes * Convert add node to use f64 * Add posterize node * Rename names randomly * Fix naming * Exposure node * Fix typo * Adjust exposure node range * Comment out vector nodes * Adjust exposure range again * Posterise as ints * Rename input * Use >= in the to hsl function
23 lines
689 B
TOML
23 lines
689 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", features = ["log-bad-types", "rc", "glam"] }
|
|
num-traits = "0.2"
|
|
borrow_stack = { path = "../borrow_stack" }
|
|
dyn-clone = "1.0"
|
|
rand_chacha = "0.3.1"
|
|
log = "0.4"
|
|
serde = { version = "1", features = ["derive", "rc"], optional = true }
|
|
glam = { version = "0.17" }
|
|
|
|
[features]
|
|
serde = ["dep:serde", "graphene-std/serde", "glam/serde"]
|