-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
93 lines (86 loc) · 2.52 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[package]
name = "fractal-rs-2"
version = "0.1.2"
authors = ["Kneelawk <[email protected]>"]
edition = "2021"
resolver = "2"
license = "LGPLv3"
description = "Simple fractal viewer written in Rust"
repository = "https://github.com/Kneelawk/fractal-rs.git"
keywords = ["fractal", "wgpu"]
readme = "README.md"
[features]
debug-wgpu-trace = ["wgpu/trace"]
prefer-dx12 = []
prefer-metal = []
prefer-vulkan = []
[dependencies]
anyhow = "^1.0.60"
async-trait = "^0.1.57"
bytemuck = "^1.11.0"
chrono = "^0.4.21"
chrono-humanize = "^0.2.1"
cgmath = { version = "^0.18.0", features = ["serde"] }
dirs = "5.0.1"
egui = "0.23.0"
egui_wgpu_backend = "0.27.0"
egui_winit_platform = { version = "0.20.0", features = ["clipboard", "webbrowser"] }
futures = "^0.3.21"
heck = "^0.4.0"
#imgui = "^0.8.0"
#imgui-wgpu = "^0.17.0"
#imgui-winit-support = "^0.8.0"
include_dir = { version = "^0.7.2", features = ["nightly"] }
itertools = "0.12.0"
kstring = "^2.0.0"
lazy_static = "^1.4.0"
liquid = "^0.26.0"
liquid-core = "^0.26.0"
liquid-lib = "^0.26.0"
liquid-derive = "^0.26.0"
log = "^0.4.17"
log4rs = "^1.1.1"
mtpng = { git = "https://github.com/Kneelawk/mtpng.git", branch = "encoder-drop-panic-fix" }
naga = { version = "0.14.1", features = ["wgsl-in", "wgsl-out"] }
num-complex = "^0.4.2"
num_cpus = "^1.13.1"
num-traits = "^0.2.15"
pathdiff = "^0.2.1"
parking_lot = "^0.12.1"
pin-utils = "^0.1.0"
#png = "^0.16.1"
rayon = "^1.5.3"
regex = "^1.6.0"
rfd = "0.12.1"
ron = "^0.8.0"
serde = "^1.0.143"
strum = "0.25.0"
strum_macros = "0.25.3"
thiserror = "^1.0.32"
tokio = { version = "^1.20.1", features = ["fs", "io-util", "macros", "rt", "rt-multi-thread", "sync"] }
tokio-stream = { version = "^0.1.9", features = ["sync"] }
winit = { version = "0.28.7", features = ["wayland", "x11"] }
wgpu = "^0.18.0"
[profile.release]
lto = true
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[package.metadata.bundle]
identifier = "com.kneelawk.fractal-rs-2"
copyright = "Copyright (c) 2021 Jed Pommert (Kneelawk)"
category = "GraphicsAndDesign"
osx_minimum_system_version = "10.11"
[package.metadata.deb]
section = "Graphics"
copyright = "Copyright (c) 2021 Jed Pommert (Kneelawk)"
maintainer-scripts = "res/deb/scripts/"
features = ["prefer-vulkan"]
assets = [
["target/release/fractal-rs-2", "opt/fractal-rs-2/bin/", "755"],
["res/deb/fractal-rs-2.desktop", "usr/share/applications/", "644"],
["README.md", "usr/share/doc/fractal-rs-2/", "644"],
["COPYING", "usr/share/doc/fractal-rs-2/", "644"],
["COPYING.LESSER", "usr/share/doc/fractal-rs-2/", "644"]
]