learning-simple-os/Cargo.lock
Mahdi Dibaiee f300229fa4 feat(frames): frame allocator
feat(debug): debug information about multiboot2's memory map
feat(panic): print panics in red
2016-06-25 20:01:45 +04:30

33 lines
859 B
TOML

[root]
name = "mahdi_os"
version = "0.1.0"
dependencies = [
"multiboot2 0.1.0 (git+https://github.com/phil-opp/multiboot2-elf64)",
"rlibc 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"spin 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "bitflags"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "multiboot2"
version = "0.1.0"
source = "git+https://github.com/phil-opp/multiboot2-elf64#44b4b3f518b35b8e8876783d9d0f9b2760fe6a2e"
dependencies = [
"bitflags 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "rlibc"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "spin"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"