c8bb85364c
- removed unnecessary debugging code - moved x86_64-kernel.json to the project root
23 lines
585 B
TOML
23 lines
585 B
TOML
[package]
|
|
name = "libk"
|
|
publish = ["gitea"]
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
description = "A library crate used to write the kernel for Foundry OS."
|
|
|
|
[dependencies]
|
|
limine = "0.3.1"
|
|
x86_64 = "0.15.2"
|
|
crossbeam = { version = "0.8.4", default-features = false, features = [
|
|
"alloc",
|
|
"crossbeam-queue",
|
|
] }
|
|
pc-keyboard = "0.8.0"
|
|
spin = "0.9.8"
|
|
futures-util = { version = "0.3.31", default-features = false, features = [
|
|
"alloc",
|
|
] }
|
|
linked_list_allocator = { version = "0.10.5", features = ["use_spin"] }
|
|
libm = { path = "../libm" }
|