mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
* Extract CEF rendered UI into a separate process and crate * Review * Review * Review * Review * Remove necessary workarounds * Block on frame copy ack * Crop and resample frames correctly * Skip blank frames * Fix deps * Fix fmt * Fix clippy warning * Review * Fix todo
28 lines
614 B
TOML
28 lines
614 B
TOML
[package]
|
|
name = "graphite-desktop-platform-mac"
|
|
version = "0.0.0"
|
|
description = "Graphite Desktop Platform Mac"
|
|
authors = ["Graphite Authors <contact@graphite.art>"]
|
|
license = "Apache-2.0"
|
|
repository = ""
|
|
edition = "2024"
|
|
rust-version = "1.87"
|
|
|
|
[features]
|
|
main = ["dep:graphite-desktop"]
|
|
helper = ["dep:graphite-desktop-ui"]
|
|
|
|
[[bin]]
|
|
name = "graphite"
|
|
path = "src/main.rs"
|
|
required-features = ["main"]
|
|
|
|
[[bin]]
|
|
name = "helper"
|
|
path = "src/helper.rs"
|
|
required-features = ["helper"]
|
|
|
|
[dependencies]
|
|
graphite-desktop = { path = "../..", optional = true }
|
|
graphite-desktop-ui = { path = "../../ui", optional = true }
|