2022-08-08 01:01:42 +00:00
|
|
|
[package]
|
2022-11-22 08:42:26 +00:00
|
|
|
name = "jinux-frame"
|
2022-08-08 01:01:42 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2022-08-16 02:41:25 +00:00
|
|
|
bitflags = "1.3"
|
2023-03-25 09:27:09 +00:00
|
|
|
cfg-if = "1.0"
|
2022-08-23 09:50:07 +00:00
|
|
|
spin = "0.9.4"
|
2023-03-06 06:19:23 +00:00
|
|
|
volatile = { version = "0.4.5", features = ["unstable"] }
|
2023-03-08 08:33:33 +00:00
|
|
|
buddy_system_allocator = "0.9.0"
|
2023-03-26 05:20:12 +00:00
|
|
|
pod = { git = "https://github.com/sdww0/POD", rev = "7fa2ed2" }
|
2023-03-26 05:34:42 +00:00
|
|
|
align_ext = { path = "../align_ext" }
|
2023-02-15 09:23:27 +00:00
|
|
|
intrusive-collections = "0.9.5"
|
2023-03-06 06:19:23 +00:00
|
|
|
log = "0.4"
|
|
|
|
|
lazy_static = { version = "1.0", features = ["spin_no_std"] }
|
2023-03-26 05:20:12 +00:00
|
|
|
trapframe = { git = "https://github.com/sdww0/trapframe-rs", rev = "94fc010" }
|
2022-09-06 12:20:43 +00:00
|
|
|
|
2023-03-29 07:42:49 +00:00
|
|
|
[target.x86_64-custom.dependencies]
|
|
|
|
|
limine = { version = "0.1.10", features = ["into-uuid"] }
|
|
|
|
|
x86_64 = "0.14.2"
|
|
|
|
|
x86 = "0.52.0"
|
|
|
|
|
acpi = "4.1.1"
|
2023-03-25 09:27:09 +00:00
|
|
|
|
2022-09-06 12:20:43 +00:00
|
|
|
[features]
|