-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
44 lines (39 loc) · 1.18 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
[package]
name = "ppd-editor"
version = "0.1.1"
authors = ["Fralonra <[email protected]>"]
description = "Editor for 2D paperdoll file"
edition = "2021"
homepage = "https://github.com/fralonra/ppd-editor"
license = "MIT"
repository = "https://github.com/fralonra/ppd-editor"
[[bin]]
path = "src/bin/editor.rs"
name = "ppd-editor"
[[bin]]
path = "src/bin/viewer.rs"
name = "ppd-viewer"
[dependencies]
anyhow = "1.0.71"
eframe = { version = "0.22.0", features = ["persistence"] }
env_logger = "0.10.0"
font-kit = "0.11.0"
image = "0.24.6"
log = "0.4.19"
material-icons = { git = "https://github.com/fschutt/material-icons.git" }
paperdoll-tar = "0.1.0"
rfd = "0.11.4"
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.104"
# for macOS only
[package.metadata.bundle.bin.ppd-editor]
name = "PpdEditor"
identifier = "io.github.fralonra.PpdEditor"
icon = ["./build/macos/ppd-editor.icns"]
category = "public.app-category.graphics-design"
[package.metadata.bundle.bin.ppd-viewer]
name = "PpdViewer"
identifier = "io.github.fralonra.PpdViewer"
icon = ["./build/macos/ppd-viewer.icns"]
category = "public.app-category.graphics-design"
short_description = "Viewer for 2D paperdoll file"