-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (30 loc) · 783 Bytes
/
Cargo.toml
File metadata and controls
38 lines (30 loc) · 783 Bytes
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
# General information
[package]
name = "kfs"
version = "0.0.5"
edition = "2021"
authors = ["lmartin <lmartin@student.42.fr>", "nieyraud <nieyraud@student.42.fr>"]
[[bin]]
name='kernel'
path='srcs/kinit.rs'
test = true
[profile.dev]
opt-level = 1
[profile.release]
opt-level = "z"
# Dependencies
[dependencies]
sys_macros = { path= "srcs/sys_macros"}
[features]
# You can add feature by naming them in default
# These feature need to be declare
# e.g: default = ["multitasking"]
# e.g: dev = ["multitasking", "debug_features"]
default = ["multitasking", "debug_features"]
# Declare feature multitasking, depends on nothing
multitasking = []
# List all debug features you want to enable
debug_features = ["crash_on_panic"]
mutex_debug = []
alloc_debug = []
crash_on_panic = []