-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
78 lines (72 loc) · 2.13 KB
/
Copy pathCargo.toml
File metadata and controls
78 lines (72 loc) · 2.13 KB
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
[package]
name = "fits3"
version = "0.1.0"
authors = ["Matthieu Baumann <matthieu.baumann@astro.unistra.fr>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
winit = { version = "0.30.12", features = ["rwh_05"]}
env_logger = "0.10"
log = "0.4"
futures = "0.3"
bytemuck = { version = "1.4", features = [ "derive" ] }
glam = "0.32.1"
byte-slice-cast = "1.0.0"
wgpu = { version = "27.0.1", features = ["glsl"]}
pollster = "0.3"
fitsrs = "0.4.1"
memmap2 = "0.9.5"
egui = "0.33.3"
# default-features set to false to bind egui with or winit
egui-winit = { version = "0.33.3", default-features = false}
# and our wgpu
egui-wgpu = { version = "0.33.3", default-features = false }
egui_double_slider = "1.0.0"
egui-file-dialog = "0.12.0"
egui_plot = "0.34.*"
image = {version = "0.25.10", default-features = false, features = ["png"] }
[lib]
crate-type = ["cdylib", "rlib"]
# used to generate SPIR-V for the Web target
#[target.'cfg(target_arch = "wasm32")'.dependencies.naga]
#git = "https://github.com/gfx-rs/naga"
#tag = "gfx-25"
#features = ["wgsl-in", "spv-out"]
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2.73" # remember to change version in wiki as well
console_error_panic_hook = "0.1.6"
console_log = "1.0"
wgpu = { version = "27.0.1", features = ["webgl", "glsl"]}
web-sys = { version = "0.3.77", features = [
"Document",
"Window",
"Element",
"HtmlCanvasElement",
"Performance",
"HtmlInputElement",
"FileReader",
"FileList",
"File",
"Event"
]}
js-sys = "0.3.50"
wasm-bindgen-futures = "0.4.30"
getrandom = { version = "0.3.3", features = ["wasm_js"] }
async-channel = { version = "2.3.1" }
lazy_static = "1.5.0"
futures-intrusive = "0.5"
egui = "0.33.3"
# default-features set to false to bind egui with or winit
egui-winit = { version = "0.33.3", default-features = false}
# and our wgpu
egui-wgpu = { version = "0.33.3", default-features = false }
[profile.release]
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = false
lto = true
panic = "abort"
incremental = false
codegen-units = 16
rpath = false