-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 898 Bytes
/
Cargo.toml
File metadata and controls
30 lines (25 loc) · 898 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
[package]
name = "arceos-altalloc"
version = "0.4.1"
edition = "2024"
authors = ["Lei Shi <shi_lei@massclouds.com>", "Yu Chen <yuchen@tsinghua.edu.cn>", "Yifan Wang <w-yf22@mails.tsinghua.edu.cn>"]
description = "Bump allocator exercise for ArceOS"
license = "GPL-3.0"
homepage = "https://github.com/arceos-org/exercise-altalloc"
repository = "https://github.com/arceos-org/exercise-altalloc"
keywords = ["arceos", "exercise", "allocator"]
categories = ["os", "no-std"]
[features]
default = ["axstd"]
axstd = ["dep:axstd"]
xtask = ["dep:clap"]
[[bin]]
name = "xtask"
path = "xtask/src/main.rs"
required-features = ["xtask"]
[dependencies]
axstd = { version = "=0.3.0-preview.1", features = ["defplat", "alloc", "paging", "multitask"], optional = true }
clap = { version = "4", features = ["derive"], optional = true }
[patch.crates-io]
axalloc = { path = "modules/axalloc" }
[profile.release]