summaryrefslogtreecommitdiffhomepage
path: root/talpid-macos/src/lib.rs
blob: 1dad7186854bc22e61466cfefbc7e0717b8e10b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Interface with macOS-specific bits.

#![deny(missing_docs)]
#![cfg(target_os = "macos")]

/// Processes
pub mod process;

/// OS bindings generated by 'generate_bindings.rs'
#[allow(non_camel_case_types)]
mod bindings;

/// Networking utilities
pub mod net;