mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 14:18:04 +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
31 lines
859 B
TOML
31 lines
859 B
TOML
[package]
|
|
name = "graphite-graphene"
|
|
publish = false
|
|
version = "0.0.0"
|
|
rust-version = "1.65.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"
|
|
|
|
[dependencies]
|
|
graph-craft = { path = "../node-graph/graph-craft", features = ["serde"] }
|
|
graphene-std = { path = "../node-graph/gstd", features = ["serde"] }
|
|
image = { version = "0.24", default-features = false }
|
|
|
|
log = "0.4"
|
|
|
|
bezier-rs = { path = "../libraries/bezier-rs" }
|
|
kurbo = { git = "https://github.com/linebender/kurbo.git", features = [
|
|
"serde",
|
|
] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
base64 = "0.13"
|
|
glam = { version = "0.17", features = ["serde"] }
|
|
|
|
# Font rendering
|
|
rustybuzz = "*"
|
|
ttf-parser = "*" # Version from rustybuzz
|