-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (37 loc) · 1018 Bytes
/
Cargo.toml
File metadata and controls
44 lines (37 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "astra-kernel"
version = "0.1.0"
edition = "2021"
authors = ["Astra OS Contributors"]
description = "Astra OS — Minimal, modern, Rust-based operating system kernel"
license = "MIT"
[dependencies]
bootloader = { version = "0.9.27", features = ["map_physical_memory"] }
volatile = "0.2.7"
spin = "0.9.8"
x86_64 = "0.14.12"
pic8259 = "0.10.4"
pc-keyboard = "0.7.0"
uart_16550 = "0.2.19"
linked_list_allocator = "0.10.5"
lazy_static = { version = "1.5.0", features = ["spin_no_std"] }
bitflags = "2.6.0"
raw-cpuid = "11.2.0"
libm = "0.2.10"
dasp = { version = "0.11", default-features = false, features = ["all-no-std"] }
[dependencies.crossbeam-queue]
version = "0.3.11"
default-features = false
features = ["alloc"]
[dependencies.smoltcp]
version = "0.11.0"
default-features = false
features = ["alloc", "medium-ethernet", "proto-ipv4", "socket-tcp"]
[package.metadata.bootloader]
kernel-stack-size = 128
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
opt-level = 2
lto = true