mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-12-23 10:11:54 +00:00
* Migrate webpack to parcel * Always colour shell output * Fix typos * Fix updateImage function having undefined editorInstance * Readd webpack for deployment builds (licence checker) * Only use webpack for license generation * Re add typscript support * Fix cloudlare deploy * Bump wasm-pack version * Update ci script * Print versions in ci script * Use optional-dependencies for wasm-pack * Execute wget after rust install * Finding wasm-opt version * Print wasm-opt version * Revert test? * Try to revert * Deploy cloudflare via github actions * Fix indentation in ci script * Change project to graphite-dev * Trigger ci * Parcel ci (#1152) * CI Test * Add write permissions for pr * Manually add cloudflare ci comment to prs * Unskip cargo about * Make compile on new versions of npm * Add deployment script to rebuild editor.graphite.rs on tag creation * Remove deploy script * Comment out unused Svelte props causing warnings * Many small fixes, including fixing @ imports --------- Co-authored-by: hypercube <0hypercube@gmail.com> Co-authored-by: Keavon Chambers <keavon@keavon.com>
61 lines
1.4 KiB
TOML
61 lines
1.4 KiB
TOML
[workspace]
|
|
members = [
|
|
"editor",
|
|
"document-legacy",
|
|
"proc-macros",
|
|
"frontend/wasm",
|
|
"frontend/src-tauri",
|
|
"node-graph/gcore",
|
|
"node-graph/gstd",
|
|
"node-graph/graph-craft",
|
|
"node-graph/interpreted-executor",
|
|
"node-graph/borrow_stack",
|
|
"node-graph/node-macro",
|
|
"node-graph/compilation-server",
|
|
"node-graph/compilation-client",
|
|
"node-graph/vulkan-executor",
|
|
"node-graph/wgpu-executor",
|
|
"node-graph/gpu-executor",
|
|
"node-graph/future-executor",
|
|
"node-graph/gpu-compiler/gpu-compiler-bin-wrapper",
|
|
"libraries/dyn-any",
|
|
"libraries/bezier-rs",
|
|
"website/other/bezier-rs-demos/wasm",
|
|
]
|
|
|
|
resolver = "2"
|
|
|
|
exclude = ["node-graph/gpu-compiler"]
|
|
|
|
[workspace.dependencies]
|
|
specta = { git = "https://github.com/oscartbeaumont/rspc", rev = "9725ddbfe40183debc055b88c37910eb6f818eae", features = [
|
|
"glam",
|
|
] }
|
|
xxhash-rust = { version = "0.8.4", features = ["xxh3"] }
|
|
|
|
|
|
[profile.dev.package.graphite-editor]
|
|
opt-level = 1
|
|
|
|
# This is a mitigation for https://github.com/rustwasm/wasm-pack/issues/981
|
|
# Which is needed because the node_registry function is too large
|
|
[profile.dev.package.interpreted-executor]
|
|
opt-level = 1
|
|
|
|
[profile.dev.package.graphene-core]
|
|
opt-level = 1
|
|
|
|
[profile.dev.package.graphene-std]
|
|
opt-level = 1
|
|
|
|
[profile.dev.package.autoquant]
|
|
opt-level = 3
|
|
|
|
[profile.dev.package.image]
|
|
opt-level = 3
|
|
|
|
[profile.dev.package.xxhash-rust]
|
|
opt-level = 3
|
|
|
|
[profile.dev]
|
|
opt-level = 1
|