zsync 0.1.1

A Zero Dependency async net runtime thats truly cross-platform, including Windows, Linux, and MacOS.
Documentation
# ZSync

[![Rust](https://img.shields.io/badge/rust-1.74%2B-blue.svg)](https://www.rust-lang.org)
[![License](https://img.shields.io/badge/license-Apache--2.0-green.svg)](LICENSE)
[![Edition](https://img.shields.io/badge/edition-2021-yellow.svg)](https://doc.rust-lang.org/edition-guide/rust-2021/index.html)
[![Tests](https://img.shields.io/badge/tests-passing-brightgreen.svg)]()

A zero-dependency, cross-platform async runtime for Rust.

## Features

- Zero external dependencies
- Cross-platform (Linux/macOS/Windows)
- Native async I/O (epoll/kqueue/IOCP)
- Efficient task scheduling
- Full TCP support
- Thread-safe executor

## Usage

```rust
use zsync::{Runtime, TcpListener};

fn main() {
    let runtime = Runtime::new().unwrap();
    
    runtime.block_on(async {
        let listener = TcpListener::bind("127.0.0.1:8080").await.unwrap();
        
        while let Ok((mut socket, _)) = listener.accept().await {
            // Handle connection
        }
    });
}
```

## Requirements

- Rust 1.74 or higher
- Rust 2021 edition

## License

Licensed under Apache License, Version 2.0 ([LICENSE](LICENSE) or http://www.apache.org/licenses/LICENSE-2.0)