├── .buildkite └── custom-tests.json ├── .cargo └── config ├── .github └── dependabot.yml ├── .gitmodules ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-BSD ├── README.md ├── coverage_config_x86_64.json └── src ├── bindings_v5_0_0 ├── mod.rs └── vfio.rs ├── fam_wrappers.rs └── lib.rs /.buildkite/custom-tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-vmm/vfio-bindings/HEAD/.buildkite/custom-tests.json -------------------------------------------------------------------------------- /.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-vmm/vfio-bindings/HEAD/.cargo/config -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-vmm/vfio-bindings/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-vmm/vfio-bindings/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-vmm/vfio-bindings/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-vmm/vfio-bindings/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-vmm/vfio-bindings/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-vmm/vfio-bindings/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-vmm/vfio-bindings/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-vmm/vfio-bindings/HEAD/LICENSE-BSD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-vmm/vfio-bindings/HEAD/README.md -------------------------------------------------------------------------------- /coverage_config_x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-vmm/vfio-bindings/HEAD/coverage_config_x86_64.json -------------------------------------------------------------------------------- /src/bindings_v5_0_0/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-vmm/vfio-bindings/HEAD/src/bindings_v5_0_0/mod.rs -------------------------------------------------------------------------------- /src/bindings_v5_0_0/vfio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-vmm/vfio-bindings/HEAD/src/bindings_v5_0_0/vfio.rs -------------------------------------------------------------------------------- /src/fam_wrappers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-vmm/vfio-bindings/HEAD/src/fam_wrappers.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-vmm/vfio-bindings/HEAD/src/lib.rs --------------------------------------------------------------------------------