//! Cross-platform library for enumerating network interfaces with metadata.
//!
//! `netdev` provides a unified API for discovering local network interfaces
//! and retrieving commonly used metadata across platforms.
//!
//! Main entry points:
//! - [`get_interfaces`] returns a snapshot of all visible interfaces.
//! - [`Interface`] represents one interface and its collected metadata.
//! - [`get_default_interface`] and [`get_default_gateway`] are available with the `gateway` feature (default).
//!
pub use ipnet;
pub use get_interfaces;
pub use Interface;
pub use NetworkDevice;
pub use MacAddr;
pub use get_default_interface;
pub use get_default_gateway;