20 lines
342 B
TOML
20 lines
342 B
TOML
[package]
|
|
name = "redox_bootloader"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "bootloader"
|
|
path = "src/lib.rs"
|
|
crate-type = ["staticlib"]
|
|
|
|
|
|
[dependencies]
|
|
linked_list_allocator = "0.9.1"
|
|
redox_syscall = "0.2.10"
|
|
|
|
[dependencies.redoxfs]
|
|
git = "https://gitlab.redox-os.org/redox-os/redoxfs.git"
|
|
branch = "0.5.0"
|
|
default-features = false
|