-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
36 lines (32 loc) · 1000 Bytes
/
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
cargo-features = ["profile-rustflags"]
[package]
name = "boss"
version = "0.1.0"
edition = "2021"
[dependencies]
num_enum = { version = "0.7.2", default-features = false }
miniz_oxide = "0.7.4"
num-bigint = { version = "0.4", default-features = false }
hashbrown = "0.14"
strum = { version = "0.26", default-features = false }
strum_macros = { version = "0.26", default-features = false }
spin = "0.9.8"
log = "0.4.20"
uefi = "0.26.0"
bitfield-struct = "0.5.6"
anyhow = { version = "1.0.79", default-features = false }
derive_more = "0.99.17"
paste = "1.0.15"
[build-dependencies]
regex = "1.10"
[features]
# Lowers the log level from Info to Trace
log-trace = []
# Traces allocation and deallocation of pages by the physical memory manager
trace-pmm = ["log-trace"]
# Traces heap allocations and deallocations
trace-malloc = ["log-trace"]
# Traces instructions executed by the BEAM interpreter
trace-beam = ["log-trace"]
# Traces messages sent between executables
trace-messages = ["log-trace"]