-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
51 lines (46 loc) · 1.35 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
description = "Property List editor written in Rust"
edition = "2021"
name = "plist-oxide"
publish = false
version = "0.1.0"
[package.metadata.bundle]
category = "public.app-category.utilities"
copyright = "Copyright © 2022-2024 ChefKiss Inc. Licensed under the Thou Shalt Not Profit License version 1.5"
icon = ["src/app_icon/icon*.png"]
identifier = "org.ChefKiss.PlistOxide"
linux_exec_args = "%f"
linux_mime_types = ["application/x-plist"]
name = "PlistOxide"
osx_minimum_system_version = "10.13"
[profile.release]
lto = true
strip = true
[dependencies]
winit = { version = "0.30.8", default-features = true }
eframe = { version = "0.30.0", default-features = false, features = [
"default_fonts",
"accesskit",
"persistence",
"wgpu",
"wayland",
"x11",
] }
egui = { version = "0.30.0" }
egui_extras = "0.30.0"
hex = "0.4.3"
plist = "1.7.0"
rfd = "0.15.2"
serde = { version = "1.0.217", features = ["derive"] }
font-kit = "0.14.2"
[target.'cfg(target_os = "macos")'.dependencies]
objc2 = "0.5.2"
objc2-app-kit = { version = "0.2.2", features = [
"NSResponder",
"NSApplication",
"NSMenu",
"NSMenuItem",
] }
objc2-foundation = { version = "0.2.2", features = ["NSString", "NSThread"] }
[patch.crates-io]
pathfinder_simd = { git = "https://github.com/theoparis/pathfinder", rev = "05f19143e21a96027de7cf2d60fa47ecd8899d21" }