-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (33 loc) · 789 Bytes
/
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
[package]
name = "mos"
version = "0.2.0"
edition = "2018"
authors = ["Alexander Akhmetov <[email protected]>"]
[lib]
crate-type = ["staticlib"]
[dependencies]
volatile = "0.2.6"
spin = "0.4.10"
uart_16550 = "0.1.0"
x86_64 = "0.2.8"
bitflags = "1.2.1"
multiboot2 = "0.3.2"
tar = { git = "ssh://[email protected]/akhmetov/tar.git", tag = "0.4.0" }
librust = { path = "./lib/librust" }
[package.metadata.bootimage]
default-target = "x86_64-mos.json"
[dependencies.compiler_builtins]
git = "https://github.com/rust-lang/compiler-builtins"
tag = "0.1.19"
features = ["mem"]
[package.metadata.cargo-xbuild]
memcpy = true
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
[dependencies.lazy_static]
version = "1.0"
features = ["spin_no_std"]
[dev-dependencies]
array-init = "0.0.3"