[package]
edition = "2024"
name = "simple-ahci"
version = "0.1.1-preview.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple AHCI (Advanced Host Controller Interface) driver for bare-metal and no_std environments."
homepage = "https://github.com/Starry-OS/simple-ahci"
readme = false
keywords = [
"ahci",
"driver",
"no_std",
"sata",
"disk",
]
categories = [
"no-std",
"hardware-support",
]
license = "MulanPSL-2.0 OR MIT"
repository = "https://github.com/Starry-OS/simple-ahci"
[lib]
name = "simple_ahci"
path = "src/lib.rs"
[dependencies.bitfield-struct]
version = "0.11.0"
[dependencies.log]
version = "0.4"
[dependencies.thiserror]
version = "2.0.16"
default-features = false
[dependencies.volatile]
version = "0.6.1"
features = ["derive"]