-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (39 loc) · 1.26 KB
/
Cargo.toml
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
43
44
45
46
[package]
name = "my-tidy-os"
version = "0.1.0"
authors = ["8176135 <[email protected]>"]
edition = "2018"
# Specificed in the .json llvm file
#
#[profile.dev]
#panic = "abort"
#
#[profile.release]
#panic = "abort"
[profile.release]
debug = true
[package.metadata.bootimage]
run-command = ["qemu-system-x86_64", "-drive", "format=raw,file={}", "-S", "-gdb", "tcp::9009"]
test-args = ["-device", "isa-debug-exit,iobase=0xf4,iosize=0x04", "-serial", "stdio",
"-display", "none"]
test-success-exit-code = 33 # (0x10 << 1) | 1
test-timeout = 60 # (in seconds)
[dependencies]
bootloader = { version = "*", features = ["map_physical_memory"]}
volatile = "*"
x86_64 = "*"
# Serial Port interface chip
uart_16550 = "*"
pic8259_simple = "*"
pc-keyboard = "*"
# backtrace = { version = "*", default-features = false }
lazy_static = { version = "*", features = ["spin_no_std"]}
# Quality of life for building enum from number
num_enum = { version = "*", default-features = false}
spin = "*"
# ------------------------
# User apps dependencies:
# ------------------------
# Standard rust serialization library,
#serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
postcard = { version = "*", default-features = false, features = ["alloc"]}