-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
73 lines (63 loc) · 2.14 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[package]
name = "ferr_os"
version = "0.1.0"
authors = [
"Constantin GIERCZAK--GALLE <[email protected]>",
"Samuel VIVIEN",
"Paul FOURNIER <[email protected]>",
"Gabriel DORIATH DÖHLER <[email protected]>",
]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bootloader = { git = "https://github.com/samsa1/bootloader.git", features = ["map_physical_memory", "sse"]}
spin = "0.5.2"
x86_64 = ">=0.14.1"
pic8259_simple = {git="https://github.com/samsa1/pic8259_simple.git"}
pc-keyboard = "*"
linked_list_allocator = "*"
uart_16550 = "*"
vga= {git="https://github.com/Pollux3737/vga.git", rev="38bf676"}
bitflags = "*"
bit_field = "*"
priority-queue = "1.1.1"
hashbrown = "*"
xmas-elf="*"
# ferr_os-librust = { git = "https://github.com/Sup3Legacy/FerrOS-librust" }
[dependencies.lazy_static]
version = "1.0"
features = ["spin_no_std"]
[dependencies.crossbeam-queue]
version = "0.2.1"
default-features = false
features = ["alloc"]
[dependencies.conquer-once]
version = "0.2.0"
default-features = false
[dependencies.futures-util]
version = "*"
default-features = false
features = ["alloc"]
# Exit QEMU from the guest system.
[package.metadata.bootimage]
test-timeout = 60 # Number of seconds before timeout.
run-args = [
"-drive", "format=raw,file=disk/disk2.img,index=2",
"-boot", "c",
"-soundhw", "pcspk",
"-device", "isa-debug-exit,iobase=0xf4,iosize=0x04", # Enable serial port.
"-serial", "stdio", # Redirect the output of the serial port to stdout.
"-cpu", "max,+ssse3,+sse4.1,+sse4.2", #,+avx512f,+avx512vl
"-rtc", "base=localtime,clock=host",
#"-display", "none" # Hide the display in test mode.
]
test-args = [
"-device", "isa-debug-exit,iobase=0xf4,iosize=0x04", # Enable serial port.
"-serial", "stdio", # Redirect the output of the serial port to stdout.
"-display", "none" # Hide the display in test mode.
]
test-success-exit-code = 33
[package.metadata.bootloader]
kernel-stack-size = 128
kernel-stack-address = "0xFFFFFF8000000000"
physical-memory-offset = "0xFFFFFF0000000000"