lsofrs 4.0.0

Modern, high-performance lsof implementation in Rust
Documentation
//! lsofrs — modern, high-performance lsof implementation in Rust
//!
//! Maps the relationship between processes and the files they hold open.
//! Supports regular files, directories, sockets, pipes, devices, and streams.

#![allow(dead_code)]

pub mod cli;
pub mod config;
pub mod csv_out;
#[cfg(target_os = "macos")]
pub mod darwin;
pub mod delta;
pub mod filter;
#[cfg(target_os = "freebsd")]
pub mod freebsd;
#[cfg(target_os = "linux")]
pub mod linux;
pub mod net_map;
pub mod output;
pub mod pipe_chain;
pub mod types;