mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-16 06:38:03 +08:00
* Migrate tauri app to v2 * Move flake files to sub directory * Remove unused plugins * Backport some of the tauri code * Implement async node graph execution Only move node runtime to native code * Always use gpu feature for tauri * Fix serialization * Add logging filters * Enable native window rendering with vello * Cleanup * Remove unused editor instance * Remove changes from vite config * Remove warnings * Remove unused files * Fix most tests * Cleanup * Apply frontend lint * Readd flake.nix * Fix tests using --all-features * Code review * Enable all backends * Fix monitor node downcast types * Change debug log to a warning * Disable shader passthrough * Cleanup unused imports * Remove warning * Update project setup instructions --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
[package]
|
|
name = "graphite-desktop"
|
|
version = "0.1.0"
|
|
description = "Graphite Desktop"
|
|
authors = ["Graphite Authors <contact@graphite.rs>"]
|
|
license = "Apache-2.0"
|
|
repository = ""
|
|
default-run = "graphite-desktop"
|
|
edition = "2021"
|
|
rust-version = "1.79"
|
|
|
|
[features]
|
|
# By default Tauri runs in production mode when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
|
|
default = ["custom-protocol", "gpu"]
|
|
# This feature is used for production builds where `devPath` points to the filesystem
|
|
# DO NOT remove this
|
|
custom-protocol = ["tauri/custom-protocol"]
|
|
gpu = ["graphite-editor/gpu"]
|
|
|
|
[dependencies]
|
|
# Local dependencies
|
|
graphite-editor = { path = "../../editor", features = [
|
|
"gpu",
|
|
"ron",
|
|
"vello",
|
|
"decouple-execution",
|
|
] }
|
|
|
|
# Workspace dependencies
|
|
serde_json = { workspace = true }
|
|
serde = { workspace = true }
|
|
axum = { workspace = true }
|
|
chrono = { workspace = true }
|
|
tokio = { workspace = true, features = ["macros", "rt"] }
|
|
ron = { workspace = true }
|
|
log = { workspace = true }
|
|
fern = { workspace = true }
|
|
futures = { workspace = true }
|
|
|
|
# Required dependencies
|
|
tauri = { version = "2", features = ["devtools", "wry"] }
|
|
tauri-plugin-shell = "2"
|
|
tauri-plugin-http = "2"
|
|
|
|
[build-dependencies]
|
|
# Required dependencies
|
|
tauri-build = { version = "2", features = [] }
|