generated from emilk/eframe_template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
74 lines (62 loc) · 2.47 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
[package]
name = "nesimg"
default-run = "nesimg"
version = "0.1.0"
authors = ["Zicklag <[email protected]>"]
edition = "2021"
rust-version = "1.60"
license-file = "./LICENSE.md"
[[bin]]
name = "nesimg"
path = "src/main.rs"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
egui = { git = "https://github.com/emilk/egui", branch = "master" }
eframe = { git = "https://github.com/emilk/egui", branch = "master", features = ["wgpu", "persistence"], default-features = false }
egui_extras = { git = "https://github.com/emilk/egui", branch = "master", features = ["image"] }
egui_demo_lib = { git = "https://github.com/emilk/egui", branch = "master", features = ["serde"] }
# egui = { path = "../../other/egui/egui" }
# eframe = { path = "../../other/egui/eframe", features = ["wgpu", "persistence"], default-features = false }
# egui_extras = { path = "../../other/egui/egui_extras", features = ["image"] }
# egui_demo_lib = { path = "../../other/egui/egui_demo_lib", features = ["serde"] }
native-dialog = { version = "0.6.3", features = ["windows_dpi_awareness", "windows_visual_styles"] }
serde = { version = "1", features = ["derive"] }
flume = "0.10.12"
image = { version = "0.24.2", default-features = false, features = ["png"] }
once_cell = "1.10.0"
rand = "0.8.5"
tracing = "0.1.34"
anyhow = "1.0.57"
bytemuck = "1.9.1"
serde_json = "1.0.81"
notify = "4.0.17"
structopt = "0.3.26"
watch = "0.2.2"
indexmap = { version = "1.8.2", features = ["serde"] }
ulid = { version = "0.5.0", features = ["serde"] }
path-absolutize = "3.0.13"
pathdiff = "0.2.1"
encase = { version = "0.2.0", features = ["glam"] }
glam = "0.20.5"
ron = { version = "0.7.0", features = ["indexmap"] }
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.6"
tracing-wasm = "0.2"
[profile.dev.package."*"]
opt-level = 3
[profile.release]
opt-level = 2 # fast and small wasm
[patch.crates-io]
# If you want to use the bleeding edge version of egui and eframe:
# egui = { git = "https://github.com/emilk/egui", branch = "master" }
# eframe = { git = "https://github.com/emilk/egui", branch = "master" }
# If you fork https://github.com/emilk/egui you can test with:
# egui = { path = "../../other/egui/egui" }
# eframe = { path = "../../other/egui/eframe" }
# epaint = { path = "../../other/egui/epaint" }
# egui_extras = { path = "../../other/egui/egui_extras" }