-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
70 lines (59 loc) · 1.2 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
[package]
name = "sos_kernel"
version = "0.1.0"
authors = [ # hacked around by
"Eliza Weisman <[email protected]>"
, # based on code by
"Philipp Oppermann <[email protected]>"
]
build = "build.rs"
# build = false
# [[bin]]
# name = "sos_kernel_full"
# [lib]
# crate-type = ["staticlib"]
#
[profile.dev]
opt-level = 3
debug = true
rpath = false
lto = false
debug-assertions = true
codegen-units = 1
panic = "abort"
[profile.release]
opt-level = 3
debug = true
rpath = false
lto = false
panic = "abort"
[features]
default = []
trace = []
[dependencies]
rlibc = "0.1.4"
spin = "0.4.6"
once = "0.3.2"
bitflags = "0.7"
cpu = { path = "cpu" }
memory = { path = "memory" }
util = { path = "util" }
elf = { path = "elf" }
paging = { path = "paging" }
params = { path = "params" }
[dependencies.log]
version = "0.3.6"
default-features = false
features = ["release_max_level_info"]
[dependencies.lazy_static]
version = "0.2.11"
features = ["spin_no_std"]
[dependencies.vga]
path = "vga"
features = ["kinfo", "system_term"]
[dependencies.sos_alloc]
path = "sos_alloc"
features = ["buddy", "system", "borrow", "buddy_as_system"]
[dependencies.clippy]
version = "0.0.60"
optional = true