forked from iMilchshake/gores-mapgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
69 lines (57 loc) · 1.59 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
[package]
name = "gores-mapgen"
version = "1.0.0"
edition = "2021"
default-run = "gores-generator"
[[bin]]
name = "gores-generator"
path = "src/main.rs"
[[bin]]
name = "camera_test"
[[bin]]
name = "twmap_test"
[[bin]]
name = "automap_test"
[[bin]]
name = "benchmark"
[dependencies]
# egui-macroquad = { git = "https://github.com/optozorax/egui-macroquad", default-features = false, rev="dfbdb967d6cf4e4726b84a568ec1b2bdc7e4f492" }
# macroquad = "0.4.4"
# egui = "0.25.0"
egui_struct = { version = "0.4", default-features = false, features = [ "egui21" ] }
egui-macroquad = "0.15.0"
egui = "0.21.0"
egui-miniquad = "0.14.0"
macroquad = "0.3.25"
ndarray = "0.15.6"
rand = {version="0.8.5", features=['small_rng']}
seahash = "4.1.0"
rand_distr = "0.4.3"
twmap = "0.12.0"
clap = { version = "4.5.4", features = ["derive", "cargo"] }
dirs = "5.0.1"
serde = "1.0.197"
serde_json = "1.0.115"
rust-embed = "8.3.0"
tinyfiledialogs = "3.9.1"
# dt = "1.0.6"
dt = {git = "https://github.com/iMilchshake/dt"}
derivative = "2.2.0"
timing = "0.2.3"
log = "0.4.22"
simple_logger = "5.0.0"
base64 = "0.22.1"
seed_gen = "1.1.0"
indicatif = "0.17.8"
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies, but not for our code:
[profile.dev.package."*"]
opt-level = 3
[profile.release]
opt-level = 3
# panic = "abort" # abort on panic!()
lto = true # enable link time optimization
strip = true # strip debug symbols
codegen-units = 1 # use a single codegen-unit for better optimizations