Import pcics crate

Summary:
- This crate provides a parser for PCI configuration space
- Really useful for writing tools for PCI configuration space that don't just shell-out to `setpci`

Differential Revision: D56983535

fbshipit-source-id: 0407d9e0f856a9b7042f82180f32ee4aedd0436e
This commit is contained in:
Peter Delevoryas 2024-05-06 14:44:41 -07:00 committed by Facebook GitHub Bot
parent 2c7dcd5dfb
commit d7e01e93a4
2 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,7 @@ cxx-build = { package = "cxx-build", git = "https://github.com/facebookexperimen
graphql-parser = { git = "https://github.com/graphql-rust//graphql-parser", rev = "8d76425d83c40670570cc325f57c730262f07456" }
imgui = { git = "https://github.com/imgui-rs/imgui-rs.git", rev = "47bb38be50fafe99021b6436672dea1c28920e70" }
lru-disk-cache = { git = "https://github.com/mozilla/sccache", rev = "fdbf843d174c6796d736b2b61dab0297670390f8" }
pcics = { git = "https://github.com/peterdelevoryas/pcics.git", rev = "aac7ac4b9953a37d8c6f7dd56f5ab2c628b322eb" }
perf-event = { version = "0.4", git = "https://github.com/krallin/perf-event.git", rev = "86224a9bc025d5d19f719542f27c8c629a08b167" }
perf-event-open-sys = { version = "4.0", git = "https://github.com/krallin/perf-event.git", rev = "86224a9bc025d5d19f719542f27c8c629a08b167" }
quickcheck = { git = "https://github.com/jakoschiko/quickcheck", rev = "6ecdf5bb4b0132ce66670b4d46453aa022ea892c" }

View File

@ -107,6 +107,7 @@ cxx-build = { package = "cxx-build", git = "https://github.com/facebookexperimen
graphql-parser = { git = "https://github.com/graphql-rust//graphql-parser", rev = "8d76425d83c40670570cc325f57c730262f07456" }
imgui = { git = "https://github.com/imgui-rs/imgui-rs.git", rev = "47bb38be50fafe99021b6436672dea1c28920e70" }
lru-disk-cache = { git = "https://github.com/mozilla/sccache", rev = "fdbf843d174c6796d736b2b61dab0297670390f8" }
pcics = { git = "https://github.com/peterdelevoryas/pcics.git", rev = "aac7ac4b9953a37d8c6f7dd56f5ab2c628b322eb" }
perf-event = { version = "0.4", git = "https://github.com/krallin/perf-event.git", rev = "86224a9bc025d5d19f719542f27c8c629a08b167" }
perf-event-open-sys = { version = "4.0", git = "https://github.com/krallin/perf-event.git", rev = "86224a9bc025d5d19f719542f27c8c629a08b167" }
quickcheck = { git = "https://github.com/jakoschiko/quickcheck", rev = "6ecdf5bb4b0132ce66670b4d46453aa022ea892c" }