asupersync 0.3.1

Spec-first, cancel-correct, capability-secure async runtime for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Platform-specific networking primitives.
//!
//! This module will contain io_uring/epoll/kqueue/iocp implementations in Phase 1.
//! For Phase 0, we rely on std::net wrappers.

/// Linux-specific networking primitives.
#[cfg(target_os = "linux")]
pub mod linux {}

/// macOS-specific networking primitives.
#[cfg(target_os = "macos")]
pub mod macos {}

/// Windows-specific networking primitives.
#[cfg(target_os = "windows")]
pub mod windows;