I'm trying to run a rust program that I've been using on Ubuntu on an AlmaLinux distro.
It utilizes the pcap crate, which is installed.
When I try to compile the application, I'm getting a
/user/bin/ld: cannot find -lpcap
collect2: error: ld returned 1 exit status
My initial thought was that libpcap was not installed on this machine, but in fact, it is. I've uninstalled and reinstalled it just in case there was something wrong with the initial install.
Any ideas on what could be wrong?