-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (39 loc) · 1.28 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (39 loc) · 1.28 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
40
41
42
[package]
name = "toubkal_os"
version = "0.2.0"
edition = "2021"
authors = ["Bahae Eddine HALIM <xto@xai.ma>"]
description = "A from-scratch, no_std Rust operating system targeting AArch64 and x86_64"
license = "MIT OR Apache-2.0"
repository = "https://github.com/halimbahae/toubkal_os"
homepage = "https://github.com/halimbahae/toubkal_os"
keywords = ["os", "kernel", "aarch64", "x86_64", "embedded"]
categories = ["no-std", "embedded", "os"]
readme = "README.md"
exclude = ["*.img", "target/", "serial.log"]
[dependencies]
embedded-graphics = "0.8.2"
linked_list_allocator = "0.10.5"
smoltcp = { version = "0.13.0", default-features = false, features = [
"alloc",
"log",
"medium-ethernet",
"proto-ipv4",
"socket-icmp",
"socket-tcp",
"socket-udp",
"socket-dhcpv4",
"socket-dns",
] }
spin = "0.9.8"
virtio-drivers = "0.7.0"
starry-fatfs = { version = "0.4.1-preview.2", default-features = false, features = ["alloc"] }
[profile.dev]
# Even debug builds should abort on panic in a kernel — no unwinding runtime.
panic = "abort"
[profile.release]
panic = "abort"
strip = true
lto = true
codegen-units = 1
opt-level = "z" # Optimise for binary size (good for a kernel)