Skip to content
Experimental Rust QUIC implementation - moved to https://github.com/djc/quinn
Branch: master
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
examples
quicr
src
tests
.gitignore
Cargo.toml
LICENSE-APACHE
LICENSE-MIT
README.md
shell.nix

README.md

Moved

This project has moved to, and merged with, quinn.

quicr

quicr is an implementation of the QUIC network protocol undergoing standardization by the IETF. It is currently suitable for experimental use. The implementation is split up into the state machine crate quicr-core which performs no IO internally and can be tested deterministically, and a high-level tokio-compatible API in quicr. See quicr/examples/ for usage.

Crates.io License: MIT License: Apache 2.0

API Docs

Features

  • Simultaneous client/server operation
  • Ordered and unordered reads for improved performance

Status

  • QUIC draft 11 with TLS 1.3 draft 28
  • Cryptographic handshake
  • Stream data w/ flow control and congestion control
  • Connection close
  • Stateless retry
  • Migration
  • 0-RTT data
  • Session resumption

Building

Because TLS1.3 is a new standard, OpenSSL 1.1.1 (or later) is required for quicr to build.

You can’t perform that action at this time.