From d7e01e93a415aa68768e0707241dc001787b8136 Mon Sep 17 00:00:00 2001 From: Peter Delevoryas Date: Mon, 6 May 2024 14:44:41 -0700 Subject: [PATCH] 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 --- eden/fs/Cargo.toml | 1 + eden/mononoke/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/eden/fs/Cargo.toml b/eden/fs/Cargo.toml index 0e92657bc7..65989d19af 100644 --- a/eden/fs/Cargo.toml +++ b/eden/fs/Cargo.toml @@ -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" } diff --git a/eden/mononoke/Cargo.toml b/eden/mononoke/Cargo.toml index 8ecdb304bc..fba782b867 100644 --- a/eden/mononoke/Cargo.toml +++ b/eden/mononoke/Cargo.toml @@ -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" }