[package]
edition = "2024"
name = "arceos-hashmap"
version = "0.4.1"
authors = [
"Lei Shi <shi_lei@massclouds.com>",
"Yu Chen <yuchen@tsinghua.edu.cn>",
"Yifan Wang <w-yf22@mails.tsinghua.edu.cn>",
]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Exercise about supporting HashMap for ArceOS"
homepage = "https://github.com/arceos-org/exercise-hashmap"
readme = "README.md"
keywords = [
"arceos",
"exercise",
"hashmap",
]
categories = [
"os",
"no-std",
]
license = "GPL-3.0"
repository = "https://github.com/arceos-org/exercise-hashmap"
[features]
axstd = ["dep:axstd"]
default = ["axstd"]
xtask = ["dep:clap"]
[[bin]]
name = "arceos-hashmap"
path = "src/main.rs"
[[bin]]
name = "xtask"
path = "xtask/src/main.rs"
required-features = ["xtask"]
[dependencies.axstd]
version = "=0.3.0-preview.1"
features = [
"defplat",
"alloc",
]
optional = true
[dependencies.clap]
version = "4"
features = ["derive"]
optional = true
[profile.release]