-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (58 loc) · 1.57 KB
/
Cargo.toml
File metadata and controls
62 lines (58 loc) · 1.57 KB
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
# ____ _ _ ___ ____
# / ___| |__ __ _ __| |/ _ \/ ___|
# | | | '_ \ / _` |/ _` | | | \___ \
# | |___| | | | (_| | (_| | |_| |___) |
# \____|_| |_|\__,_|\__,_|\___/|____/
# https://github.com/NewDawn0/ChadOS
#
# @Author: NewDawn0
# @Contributors: -
# @License: MIT
#
# File: Cargo.toml
# Desc: Cargo config
[package]
name = "ChadOS"
version = "0.1.0"
edition = "2021"
authors = ["NewDawn0 (Tom)"]
[dependencies]
bit_field = "0.10.2"
bitflags = "2.4.1"
bootloader = { version = "0.9.8", features = ["map_physical_memory"] }
conquer-once = { version = "0.4.0", default-features = false }
const_format = "0.2.32"
crossbeam-queue = { version = "0.3.8", default-features = false, features = [
"alloc",
] }
futures-util = { version = "0.3.28", default-features = false, features = [
"alloc",
] }
good_memory_allocator = { version = "0.1.7", optional = true }
hashbrown = "0.14.2"
lazy_static = { version = "1.4.0", features = ["spin_no_std"] }
linked_list_allocator = { version = "0.10.5", optional = true }
once_cell = { version = "1.18.0", default-features = false, features = [
"critical-section",
] }
pc-keyboard = "0.7.0"
pic8259 = "0.10.4"
spin = "0.9.8"
uart_16550 = "0.3.0"
volatile = "0.2.6"
x86_64 = "0.14.11"
[package.metadata.bootimage]
test-success-exit-code = 33 # (0x10 << 1) | 1
test-args = [
"-device",
"isa-debug-exit,iobase=0xf4,iosize=0x04",
"-serial",
"stdio",
"-display",
"none",
]
[features]
default = ["alloc-galloc"]
alloc-bump = ["linked_list_allocator"]
alloc-galloc = ["good_memory_allocator"]
unused-task = []