generated from emilk/eframe_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
79 lines (65 loc) · 1.63 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
[package]
name = "ThermoTransform"
version = "0.5.0"
authors = ["Dawid Lentka <[email protected]>"]
edition = "2021"
build = "build.rs"
[features]
time_meas=[]
[dependencies]
rayon = "1.7.0"
parking_lot="0.12.1"
triple_buffer = "6.2.0"
num-complex = "0.4.3"
ndarray = {version="0.15.6",features=["rayon"]}
egui = "0.22.0"
eframe = { version = "0.22.0", features = ["persistence"] }
egui_extras = "0.22.0"
rfd = {version = "0.11.4", features =["file-handle-inner"]}
colorgrad = "0.6.2"
strum = "0.25.0"
strum_macros = "0.25.1"
atomic_enum = "0.2.0"
mathru="0.15.2"
lazy_static="1.4.0"
ndarray-ndimage = "0.3.0"
ndrustfft = "0.4.1"
static_assertions = "1.1.0"
image="0.24.6"
fast-float={git="https://github.com/PingPongun/fast-float-rust.git", branch = "master"}
binrw = "0.11.2"
zstd = {version="0.12.4",features=["zstdmt"]}
num_cpus = "1.16.0"
clap={version="4.3.17", features=["derive"]}
macros={path="macros/"}
[patch.crates-io]
ndarray={git="https://github.com/PingPongun/ndarray.git", branch = "rewrite_iterators"}
# ndarray={path="../ndarray/"}
[build-dependencies]
winresource = "0.1.15"
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tracing-subscriber = "0.3.17"
# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.7"
tracing-wasm = "0.2.1"
[profile.dev]
opt-level = 0
incremental = true
codegen-units = 256
[profile.dev_opt]
inherits = "dev"
opt-level = 2
incremental = true
codegen-units = 256
[profile.release]
opt-level = 3
incremental = false
codegen-units = 1
strip = true
lto = "fat"
[profile.dev_opt.package."*"]
opt-level = 2
[profile.release.package."*"]
opt-level = 3