-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (28 loc) · 701 Bytes
/
Cargo.toml
File metadata and controls
41 lines (28 loc) · 701 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
[package]
name = "os"
version = "0.5.0"
edition = "2021"
authors = ["Viktor Karlsson", "Julle Juliusson Keuschnig"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["staticlib"]
test = false
[workspace]
members = [
"base",
"fs",
"builtins",
]
[dependencies]
# Access to various x86 instructions that would otherwise need assembly code
x86_64 = "0.14.10"
# Bitflags on types
bitflags = "2.4.0"
# Access to the pic8259 controller, responsible for handling interrupts.
pic8259 = "0.10.4"
# PS2 interface
ps2 = "0.2.0"
spin = "0.9.8"
base = {path = "./base"}
fs = {path = "./fs"}
builtins = {path = "./builtins"}