forked from nebulet/nebulet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
79 lines (63 loc) · 1.65 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
74
75
76
77
78
79
[package]
name = "nebulet"
version = "0.1.0"
authors = ["Lachlan Sneff <[email protected]>"]
[package.metadata.bootimage]
default-target = "x86_64-nebulet"
output = "bootimage.bin"
# We're pulling down the pre-compiled bootloader, so no
# need to build it. (Also avoids a bug in xargo)
#[package.metadata.bootimage.bootloader]
#git = "https://github.com/rust-osdev/bootloader.git"
[workspace]
members = ["tools"]
exclude = [
"target/x86_64-nebulet/release/bootloader",
"target/x86_64-nebulet/debug/bootloader",
"cretonne"
]
[features]
default = ["dlmalloc_rs", "vga"]
vga = [] # log to vga
serial = [] # log to serial
bump_alloc = []
dlmalloc_rs = []
linked_alloc = ["linked_list_allocator"]
[dependencies]
spin = "0.4.6"
rlibc = "1.0.0"
bitflags = "1.0.1"
bit_field = "0.9.0"
x86_64 = "0.2.0-alpha-019"
os_bootinfo = "0.2.0"
[dependencies.hashmap_core]
git = "https://github.com/nebulet/hashmap_core.git"
[dependencies.lazy_static]
version = "1.0.0"
features = ["spin_no_std"]
[dependencies.linked_list_allocator]
version = "0.5.0"
optional = true
[dependencies.nebulet_abi]
path = "nabi"
# Cretonne compiler
[dependencies.cretonne-codegen]
path = "cretonne/lib/codegen"
default-features = false
features = ["core"]
[dependencies.cretonne-frontend]
path = "cretonne/lib/frontend"
default-features = false
features = ["core"]
[dependencies.cretonne-wasm]
path = "cretonne/lib/wasm"
default-features = false
features = ["core"]
[dependencies.cretonne-native]
path = "cretonne/lib/native"
default-features = false
features = ["core"]
[dependencies.wasmparser]
git = "https://github.com/yurydelendik/wasmparser.rs"
default_features = false
features = ["core"]