-
Notifications
You must be signed in to change notification settings - Fork 33
/
Cargo.toml
71 lines (61 loc) · 1.74 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
[workspace]
members = ["crates/*"]
[workspace.dependencies]
byondapi = "0.4.11"
coarsetime = "0.1.34"
flume = "0.11.1"
eyre = "0.6.12"
tracing = "0.1.40"
[package]
name = "auxmos"
version = "2.3.0"
authors = ["Putnam <putnam3145@gmail.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["turf_processing", "katmos"]
zas_hooks = []
turf_processing = []
superconductivity = ["turf_processing"]
fastmos = ["turf_processing"]
katmos = ["fastmos"]
katmos_slow_decompression = ["fastmos"]
reaction_hooks = []
citadel_reactions = ["reaction_hooks"]
yogs_reactions = ["reaction_hooks"]
# Tracing will expose this application to a local port, use with care
tracy = ["dep:tracing-tracy", "dep:tracing-subscriber", "dep:tracing"]
[lib]
crate-type = ["cdylib"]
[dependencies]
byondapi = { workspace = true }
flume = { workspace = true }
coarsetime = { workspace = true }
eyre = { workspace = true }
auxcallback = { path = "./crates/auxcallback" }
auxmacros = { path = "./crates/auxmacros" }
itertools = "0.13.0"
rayon = "1.10.0"
float-ord = "0.3.2"
parking_lot = "0.12.3"
rustc-hash = "2.0.0"
ahash = "0.8.11"
indexmap = { version = "2.6.0", features = ["rayon"] }
dashmap = { version = "6.1.0", features = ["rayon"] }
hashbrown = "0.15.0"
atomic_float = "1.1.0"
petgraph = "0.6.5"
bitflags = "2.6.0"
nom = "7.1.3"
mimalloc = { version = "0.1.43", default-features = false }
tracing = { version = "0.1.40", optional = true }
tracing-tracy = { version = "0.11.3", optional = true }
tracing-subscriber = { version = "0.3.18", optional = true }
[dependencies.tinyvec]
version = "1.8.0"
features = ["rustc_1_61", "alloc"]
[profile.release]
lto = 'fat'
debug = true
codegen-units = 1
panic = 'abort'