From 5719c88373f159c2d9485a280f3818b10b4d423e Mon Sep 17 00:00:00 2001 From: Micah Abbott Date: Fri, 10 Nov 2023 17:04:27 -0500 Subject: [PATCH] docs: update required dependencies In a fresh Fedora 39 container, I had to install the updated list of dependencies to successfully run: - cargo fmt - cargo clippy - cargo build --release Signed-off-by: Micah Abbott --- CONTRIBUTING.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8ac8b04c..2d9bebd3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,17 +2,19 @@ In order to build `bootc` you will need the following dependencies. -Fedora: -``` -sudo dnf install ostree-libs ostree-devel +Fedora: + +```bash +sudo dnf install clippy openssl-devel ostree-devel ostree-libs rustfmt ``` # Pre flight checks -Makes sure you commented your code additions, then run -``` +Make sure you commented your code additions, then run + +```bash cargo fmt cargo clippy ``` -Make sure to apply any relevant suggestions. +Make sure to apply any relevant suggestions.