-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) 路 703 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (26 loc) 路 703 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
[package]
name = "linux-kernel-v1-0-rust"
version = "1.0.0"
edition = "2024"
authors = ["Linus Torvalds <torvalds@linux-foundation.org>", "Linux Kernel Rust Working Group"]
description = "Plausible safe and unsafe Rust rewrite of Linux Kernel v1.0 architecture"
license = "GPL-2.0-only"
repository = "https://github.com/torvalds/linux"
[dependencies]
kernel_alloc_sys = "0.4.1"
linux_vfs_core = "0.9.3"
sync_atomic_spinlock = "0.1.0"
zero_copy_ringbuf = "1.2.0"
x86_64_interrupts_hal = "0.2.5"
ide_driver_sys = "0.1.8"
tty_ringbuf_sys = "0.3.0"
[features]
default = ["smp", "ext2", "floppy"]
smp = []
ext2 = []
floppy = []
debug_printk = []
[profile.release]
opt-level = 3
lto = true
panic = "abort"