kcp-rs

Crates.iokcp-rs
lib.rskcp-rs
version
sourcesrc
created_at2025-02-02 10:19:24.450737
updated_at2025-02-02 10:19:24.450737
descriptionA Rust implementation of KCP Stream Protocol
homepage
repositoryhttps://github.com/spritetong/kcp-rs
max_upload_size
id1539452
Cargo.toml error:TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Sprite Tong (spritetong)

documentation

https://docs.rs/kcp-rs

README

kcp-rs

A Rust implementation of KCP (Fast & Reliable ARQ Protocol).

Overview

KCP is a fast and reliable protocol that can achieve the reliability of TCP with the speed of UDP. This crate provides a Rust implementation with the following features:

  • Fast and reliable data transfer over UDP
  • Configurable parameters for different scenarios
  • Asynchronous API support

Installation

Add this to your Cargo.toml:

[dependencies]
kcp-rs = "0.2"

Quick Start

use kcp_rs::Kcp;

// Basic usage example coming soon

Documentation

For more detailed information on the API and usage, please refer to the API documentation.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Author

Sprite Tong spritetong@gmail.com

Commit count: 46

cargo fmt