mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 14:18:04 +08:00
28 lines
619 B
TOML
28 lines
619 B
TOML
[package]
|
|
name = "graphite-desktop-platform-mac"
|
|
description = "Graphite Desktop Platform Mac"
|
|
version.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
publish.workspace = true
|
|
|
|
[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 }
|