-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
90 lines (79 loc) · 2.17 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
[package]
name = "pentultimate_solver"
version = "0.1.0"
authors = ["Zeke Baker <zbaker@live.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = { version = "0.7.0", features = ["serialize"] }
bevy_egui = "0.14.0"
bevy-inspector-egui = "0.11.0"
bevy_prototype_debug_lines = "0.7.0"
bincode = { version = "1.3.3", optional = true }
bit_field = "0.10.1"
bitvec = "1.0.0"
egui = "0.18.1"
env_logger = "0.9.3"
epaint = "0.18.1"
fnv = "1.0.7"
glam = { version = "0.20.5", features = ["default", "debug-glam-assert"] }
gltf-json = "0.16.0"
hexf = "0.2.1"
itertools = "0.10.5"
json5 = { version = "0.3.0", optional = true }
lazy_static = "1.4.0"
libc = "0.2.99"
log = { version = "0.4.14", features = ["serde"] }
memmap = "0.7.0"
memoffset = "0.7.1"
num-traits = "0.2.15"
plotters = "0.3.2"
rand = "0.8.4"
rfd = "0.6.4"
ron = { version = "0.7.0", optional = true }
serde = "1.0.125"
serde_json = { version = "1.0.78", optional = true }
simple-error = "0.2.3"
static_assertions = "1.1.0"
strum = "0.24.0"
strum_macros = "0.24.0"
toml = { version = "0.5.8", optional = true }
tracing-subscriber = "0.3.8" # for testing
[dev-dependencies]
criterion = "0.3.4"
pentultimate_solver = { path = ".", features = ["default", "all_file_formats"] }
uuid = "0.8.2"
# wgpu = "0.7.1"
[features]
# default = ["const_fn_floating_point_arithmetic", "io_read_to_string", "ron"]
# default = ["const_fn_floating_point_arithmetic", "io_read_to_string", "all_file_formats"]
default = [
"const_fn_floating_point_arithmetic",
"io_read_to_string",
"all_file_formats",
# "non_unit_tests",
# "no_ffi",
]
const_fn_floating_point_arithmetic = []
io_read_to_string = []
non_unit_tests = []
miri = ["no_ffi"]
no_ffi = ["glam/scalar-math"]
# specialization = []
all_file_formats = [
"bincode",
"json5",
"serde_json",
"ron",
] # toml is left out due to lack of supported types
# [[bench]]
# name = "criterion_benchmarks"
# harness = false
[profile.dev]
opt-level = 0
[[example]]
name = "transformation_finder"
[[example]]
name = "egui_playground"
[workspace]
resolver = "2"