30 lines
879 B
TOML
30 lines
879 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", default-features = false }
|
|
#redox-exec = { git = "https://gitlab.redox-os.org/redox-os/relibc.git" }
|
|
redox-exec = { git = "https://gitlab.redox-os.org/redox-os/relibc.git" }
|
|
redox_syscall = "0.5.1"
|
|
redox-scheme = { git = "https://gitlab.redox-os.org/4lDO2/redox-scheme.git", branch = "schemev2" }
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
lto = "fat"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[patch.crates-io]
|
|
redox_syscall = { git = "https://gitlab.redox-os.org/4lDO2/syscall.git", branch = "schemev2" }
|