34 lines
No EOL
859 B
TOML
34 lines
No EOL
859 B
TOML
[package]
|
|
name = "kernel"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "GPL-2.0-only"
|
|
|
|
[dependencies]
|
|
libgoatweed = { git = "https://forge.gaycatgirl.sex/hypericum/libgoatweed.git", rev = "31ac8671a3cfb338ae66957c963a9ced72fa2251" , default-features = false }
|
|
atomalloc = { git = "https://forge.gaycatgirl.sex/hypericum/atomalloc.git", rev = "6f6687429e5e89c16e813dbeab4af30e05e2e8a2", default-features = false, features = ["no_alloc"] }
|
|
|
|
# bootloader info structs
|
|
limine = "0.5.0"
|
|
|
|
# sync prims
|
|
spin = "0.10.0"
|
|
|
|
# some niceities
|
|
x86_64 = "0.15.2"
|
|
|
|
# alloc
|
|
linked_list_allocator = "0.10.5"
|
|
|
|
# stuff for init
|
|
tar-no-std = { version = "0.3.3", features = ["alloc", "unstable"] }
|
|
elf = { version = "0.7.4", default-features = false, features = [] }
|
|
|
|
# hashmaps and hashsets
|
|
hashbrown = "0.15.2"
|
|
|
|
[[bin]]
|
|
name = "kernel"
|
|
test = false
|
|
doctest = false
|
|
bench = false |