{"id":13648812,"url":"https://github.com/rust-osdev/acpi","last_synced_at":"2025-05-14T19:09:06.796Z","repository":{"id":32244580,"uuid":"132017931","full_name":"rust-osdev/acpi","owner":"rust-osdev","description":"Rust library for parsing ACPI tables and interpreting AML","archived":false,"fork":false,"pushed_at":"2025-03-07T11:31:58.000Z","size":851,"stargazers_count":213,"open_issues_count":45,"forks_count":69,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-04-13T15:08:01.300Z","etag":null,"topics":["acpi","aml","osdev","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rust-osdev.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["IsaacWoods"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2018-05-03T15:52:19.000Z","updated_at":"2025-04-02T02:05:42.000Z","dependencies_parsed_at":"2024-04-13T14:04:26.447Z","dependency_job_id":"d533f117-a3e0-4785-96b1-cc2476e21985","html_url":"https://github.com/rust-osdev/acpi","commit_stats":{"total_commits":533,"total_committers":27,"mean_commits":19.74074074074074,"dds":"0.19699812382739212","last_synced_commit":"a77817f48f1eacfa2d8c7b9943a19a2a497b2f83"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rust-osdev%2Facpi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rust-osdev%2Facpi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rust-osdev%2Facpi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rust-osdev%2Facpi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rust-osdev","download_url":"https://codeload.github.com/rust-osdev/acpi/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254105214,"owners_count":22015613,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["acpi","aml","osdev","rust"],"created_at":"2024-08-02T01:04:33.660Z","updated_at":"2025-05-14T19:09:05.599Z","avatar_url":"https://github.com/rust-osdev.png","language":"Rust","funding_links":["https://github.com/sponsors/IsaacWoods"],"categories":["Rust"],"sub_categories":[],"readme":"# Acpi\n![Build Status](https://github.com/rust-osdev/acpi/actions/workflows/build.yml/badge.svg)\n[![Version](https://img.shields.io/crates/v/rsdp.svg?style=rounded-square)](https://crates.io/crates/rsdp/)\n[![Version](https://img.shields.io/crates/v/acpi.svg?style=rounded-square)](https://crates.io/crates/acpi/)\n[![Version](https://img.shields.io/crates/v/aml.svg?style=rounded-square)](https://crates.io/crates/aml/)\n\n### [Documentation (`rsdp`)](https://docs.rs/rsdp)\n### [Documentation (`acpi`)](https://docs.rs/acpi)\n### [Documentation (`aml`)](https://docs.rs/aml)\n\nA library to parse ACPI tables and AML, written in pure Rust. Designed to be easy to use from Rust bootloaders and kernels. The library is split into three crates:\n- `rsdp` parses the RSDP and can locate it on BIOS platforms. It does not depend on `alloc`, so is suitable to use from bootloaders without heap alloctors. All of its\n  functionality is reexported by `acpi`.\n- `acpi` parses the static tables (useful but not feature-complete). It can be used from environments that have allocators, and ones that don't (but with reduced functionality).\n- `aml` parses the AML tables (can be useful, far from feature-complete).\n\nThere is also the `acpi-dumper` utility to easily dump a platform's ACPI tables (this currently only works on Linux).\n\n## Contributing\nContributions are more than welcome! You can:\n- Write code - the ACPI spec is huge and there are bound to be things we don't support yet!\n- Improve our documentation!\n- Use the crates within your kernel and file bug reports and feature requests!\n\nUseful resources for contributing are:\n- [The ACPI specification](https://uefi.org/specifications)\n- [OSDev Wiki](https://wiki.osdev.org/ACPI)\n\nYou can run the AML test suite with `cargo run --bin aml_tester -- -p tests`.\nYou can run fuzz the AML parser with `cd aml \u0026\u0026 cargo fuzz run fuzz_target_1` (you may need to `cargo install cargo-fuzz`).\n\n## Licence\nThis project is dual-licenced under:\n- Apache Licence, Version 2.0 ([LICENCE-APACHE](LICENCE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)\n- MIT license ([LICENCE-MIT](LICENCE-MIT) or http://opensource.org/licenses/MIT)\n\nUnless you explicitly state otherwise, any contribution submitted for inclusion in this work by you,\nas defined in the Apache-2.0 licence, shall be dual licenced as above, without additional terms or\nconditions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frust-osdev%2Facpi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frust-osdev%2Facpi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frust-osdev%2Facpi/lists"}