Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
245 changes: 245 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ keywords = ["rpc", "streaming", "inference", "gpu", "sessions"]
categories = ["network-programming", "asynchronous"]

[dependencies]
axum = "0.8"
bytes = "1.11"
quinn = "0.11.9"
rcgen = "0.14.5"
serde = { version = "1.0", features = ["derive"] }
thiserror = "2.0"
tokio = { version = "1.48", features = ["macros", "net", "rt", "rt-multi-thread", "sync", "time"] }
uuid = { version = "1.20", features = ["v4"] }
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ This repository is in active bootstrap. The current crate includes:
time at the protocol layer.
- `FrameTracer` hooks and W3C `traceparent` propagation for OpenTelemetry-style
frame spans.
- `StickyRouteTable` and a small k8s sidecar example for turning session state
into sticky backend service decisions.
- `FrameTransport`, `InMemoryEndpoint`, and a reusable conformance harness for
local tests and future network transports.
- `QuicFrameTransport` built on Quinn, including a 0-RTT resume path for flaky
Expand Down Expand Up @@ -78,4 +80,6 @@ See [docs/architecture.md](docs/architecture.md) for the current architecture,
contract. See [docs/metering.md](docs/metering.md) for protocol-layer metering.
See [docs/telemetry.md](docs/telemetry.md) for frame tracing.
See [docs/quic.md](docs/quic.md) for the QUIC transport.
See [docs/k8s-sticky-routing.md](docs/k8s-sticky-routing.md) for the k8s
sidecar route table.
See [bindings/typescript](bindings/typescript) for the browser/WebRTC client.
Loading
Loading