-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
48 lines (41 loc) · 1.21 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
[workspace]
members = ["boot", "mikanos_usb"]
[package]
name = "sabios"
version = "0.1.0"
authors = ["gifnksm <makoto.nksm+github@gmail.com>"]
edition = "2018"
build = "build.rs"
resolver = "2"
# https://github.com/rust-lang/cargo/issues/7359
# [profile.dev]
# panic = "abort"
[profile.release]
# panic = "abort"
debug = true
[dependencies]
arrayvec = { version = "0.7.1", default-features = false }
bit_field = "0.10.1"
bootloader = "0.10.7"
conquer-once = { version = "0.3.2", default-features = false }
crossbeam-queue = { version = "0.3.2", default-features = false, features = ["alloc"] }
custom_debug_derive = "0.5.0"
derivative = { version = "2.2.0", features = ["use_core"] }
enumflags2 = "0.7.1"
futures-util = { version = "0.3.16", default-features = false, features = ["alloc", "async-await-macro"] }
linked_list_allocator = "0.9.0"
mikanos_usb = { path = "./mikanos_usb" }
num-traits = { version = "0.2.14", default-features = false }
pin-project = "1.0.8"
spin = "0.9.2"
static_assertions = "1.1.0"
uart_16550 = "0.2.15"
volatile = "0.4.4"
x86_64 = "0.14.4"
[build-dependencies]
color-eyre = "0.5.11"
fatfs = "0.3.5"
fscommon = "0.1.1"
llvm-tools = "0.1.1"
[package.metadata.bootloader]
map-physical-memory = true