forked from BeeStation/auxmos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (45 loc) · 1.31 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
[package]
name = "auxmos"
version = "0.2.0"
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"]
auxcleanup_gas_deletion = ["auxcleanup"]
equalization = []
monstermos = ["equalization"]
putnamos = ["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.9.0"
rayon = "1.5.0"
float-ord = "0.2.0"
crossbeam = "0.8.0"
flume = "0.10.5"
coarsetime = "0.1.16"
parking_lot = "0.11.1"
fxhash = "0.2.1"
nonmax = "0.5.0"
[dependencies.dashmap]
version = "4.0.2"
features = ["raw-api"]
[dependencies.tinyvec]
version = "1.1.0"
features = ["rustc_1_40", "alloc"]
[profile.release]
lto = 'thin'
debug = true
panic = 'abort'