summaryrefslogtreecommitdiff
path: root/kernel/Cargo.toml
blob: bce79cb5e006b6ccbc2b50af1e5c8b14bcb1bb82 (plain)
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
[package]
name = "kernel"
version = "0.1.0"
authors = ["Dennis Kobert <dennis@kobert.dev>",
           "Jan Zwerschke"]
edition = "2018"

[[test]]
name = "int3"
harness = false

[[test]]
name = "stack_overflow"
harness = false

[features]
testing_qemu = []

[dependencies]
x86_64 = "0.13"
uart_16550 = "0.2.1"
spin = "0.5"

[dependencies.lazy_static]
version = "1.4.0"
features = ["spin_no_std"]