-
Notifications
You must be signed in to change notification settings - Fork 27
/
Cargo.toml
68 lines (58 loc) · 2.18 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
[package]
name = "eduos-rs"
version = "0.1.0"
license = "MIT/Apache-2.0"
authors = ["Stefan Lankes <[email protected]>"]
edition = "2018"
[package.metadata.bootimage]
build-command = ["build"]
# The command invoked with the created bootimage (the "{}" will be replaced
# with the path to the bootable disk image)
# Applies to `bootimage run` and `bootimage runner`
run-command = ["qemu-system-x86_64", "-display", "none", "-smp", "1", "-m", "128M", "-serial", "stdio", "-cpu", "qemu64,apic,fsgsbase,rdtscp,xsave,xsaveopt,fxsr", "-device", "isa-debug-exit,iobase=0xf4,iosize=0x04", "-drive", "format=raw,file={}"]
# Additional arguments passed to the run command for non-test executables
# Applies to `bootimage run` and `bootimage runner`
run-args = []
[dependencies]
bitflags = "1.0"
spin = "0.9"
simple-chunk-allocator = "0.1.5"
qemu-exit = "3.0" # Spinlocks.
[target.'cfg(target_arch = "x86_64")'.dependencies.bootloader]
version = "0.9.23"
default-features = false
features = ["recursive_page_table"]
#[dependencies.lazy_static]
#version = "1.2"
#features = ["spin_no_std"]
[target.'cfg(target_arch = "x86_64")'.dependencies.x86]
version = "0.52"
default-features = false
[dependencies.goblin]
version = "0.6"
default-features = false
features = ["elf64", "elf32", "endian_fd"]
#[dependencies.scroll]
#version = "0.9"
#default-features = false
[dependencies.num-traits]
version = "0.2"
default-features = false
# The development profile, used for `cargo build`.
[profile.dev]
opt-level = 1 # controls the `--opt-level` the compiler builds with
debug = true # controls whether the compiler passes `-C debuginfo`
# a value of `true` is equivalent to `2`
rpath = false # controls whether the compiler passes `-C rpath`
lto = false # controls `-C lto` for binaries and staticlibs
debug-assertions = true # controls whether debug assertions are enabled
codegen-units = 1 # controls whether the compiler passes `-C codegen-units`
# `codegen-units` is ignored when `lto = true`
# The release profile, used for `cargo build --release`.
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1