forked from Putnam3145/auxmos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (49 loc) · 1.49 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
[package]
name = "auxmos"
version = "1.1.1"
authors = ["Putnam <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["auxcleanup_gas_deletion", "turf_processing"]
auxcleanup_gas_deletion = ["auxcleanup"]
zas_hooks = []
turf_processing = []
equalization = ["turf_processing"]
monstermos = ["equalization"]
putnamos = ["equalization"]
katmos = ["equalization"]
reaction_hooks = []
plasma_fire_hook = ["reaction_hooks"]
trit_fire_hook = ["reaction_hooks"]
fusion_hook = ["reaction_hooks"]
generic_fire_hook = ["reaction_hooks"]
all_reaction_hooks = ["fusion_hook", "trit_fire_hook", "plasma_fire_hook", "generic_fire_hook"]
explosive_decompression = ["monstermos"]
putnamos_decompression = ["putnamos"]
[lib]
crate-type = ["cdylib"]
[dependencies]
auxtools = { git = "https://github.com/willox/auxtools"}
auxcallback = { git = "https://github.com/Putnam3145/auxcallback" }
auxcleanup = { git = "https://github.com/Putnam3145/auxcleanup", optional = true}
itertools = "0.10.3"
rayon = "1.5.1"
float-ord = "0.3.2"
crossbeam = "0.8.1"
flume = "0.10.11"
parking_lot = "0.12.0"
fxhash = "0.2.1"
nonmax = "0.5.0"
ahash = "0.7.6"
lazy_static = "1.4.0"
indexmap = { version = "1.8.0", features = ["rayon"] }
dashmap = { version = "5.2.0", features = ["rayon"] }
atomic_float = "0.1.0"
[dependencies.tinyvec]
version = "1.5.1"
features = ["rustc_1_55", "alloc"]
[profile.release]
lto = 'thin'
debug = true
panic = 'abort'