626a5af3a4
This reduces the file size from 87KiB to 79KiB.
25 lines
613 B
TOML
25 lines
613 B
TOML
[package]
|
|
name = "bootstrap"
|
|
version = "0.0.0"
|
|
authors = ["4lDO2 <4lDO2@protonmail.com>"]
|
|
edition = "2021"
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
name = "bootstrap"
|
|
crate-type = ["staticlib"]
|
|
|
|
[dependencies]
|
|
hashbrown = { version = "0.14", default-features = false, features = ["inline-more"] }
|
|
linked_list_allocator = "0.10"
|
|
redox-initfs = { git = "https://gitlab.redox-os.org/redox-os/redox-initfs.git", features = ["kernel"], default-features = false }
|
|
redox-exec = { git = "https://gitlab.redox-os.org/redox-os/relibc.git" }
|
|
redox_syscall = "0.4"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
lto = "fat"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|