-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (38 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
39 lines (38 loc) · 1.16 KB
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
[package]
name = "osdemo"
version = "0.1.3"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "An example of combining various libraries for aarch64 OS development."
authors = ["Andrew Walbran <[email protected]>"]
repository = "https://github.com/google/osdemo"
keywords = ["arm", "aarch64", "cortex-a", "osdev"]
categories = ["embedded", "no-std"]
[dependencies]
aarch64-paging = { version = "0.12.1", default-features = false }
aarch64-rt = "0.4.3"
arm_pl031 = "0.2.1"
arm-gic = "0.8.1"
arm-pl011-uart = "0.5.0"
arm-sysregs = { version = "0.2.8", features = ["el2"] }
arrayvec = { version = "0.7.6", default-features = false }
bitflags = "2.11.1"
buddy_system_allocator = { version = "0.13.0", default-features = false, features = [
"alloc",
"use_spin",
] }
chrono = { version = "0.4.44", default-features = false }
embedded-io = "0.7.1"
dtoolkit = "0.1.1"
log = "0.4.29"
percore = "0.2.4"
smccc = "0.2.2"
spin = { version = "0.10.0", features = [
"lazy",
"once",
"spin_mutex",
], default-features = false }
uart_16550 = { version = "0.6.0", features = ["embedded-io"] }
virtio-drivers = { version = "0.13.0", default-features = false, features = [
"alloc",
] }