[package]
name = "ax-memory-set"
description = "Data structures and operations for managing memory mappings"
keywords = ["arceos", "virtual-memory", "memory-area", "mmap"]
version = "0.6.13"
repository = "https://github.com/rcore-os/tgoskits"
edition.workspace = true
authors = ["Yuekai Jia <equation618@gmail.com>", "aarkegz <aarkegz@gmail.com>"]
categories = ["os", "memory-management", "no-std"]
license = "Apache-2.0"
[dependencies]
axtest = { workspace = true, optional = true }
ax-errno = { workspace = true, optional = true }
ax-memory-addr = { workspace = true }
[features]
axtest = ["dep:axtest"]
ax-errno = ["dep:ax-errno"]
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(axtest)'] }