[package]
edition = "2024"
name = "starry-vm"
version = "0.3.0"
authors = [
"朝倉水希 <asakuramizu111@gmail.com>",
"Mivik <mivikq@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Virtual memory management library for Starry OS"
readme = false
keywords = ["starry-os"]
license = "Apache-2.0"
repository = "https://github.com/Starry-OS/starry-vm"
[package.metadata.docs.rs]
all-features = true
[features]
alloc = []
default = ["alloc"]
[lib]
name = "starry_vm"
path = "src/lib.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[dependencies.axerrno]
version = "0.2"
[dependencies.bytemuck]
version = "1.24"
features = [
"align_offset",
"const_zeroed",
"zeroable_maybe_uninit",
]
[dependencies.extern-trait]
version = "0.4"
[dev-dependencies.bytemuck]
version = "1.24"
features = ["derive"]