Files
AuraVPN/crates/aura-transport/Cargo.toml
T
xah30 cb78de4f37 feat(transport): pin PacketConnection contract for the router seam
Define the async PacketConnection trait (send_packet/recv_packet over &self)
that aura-tunnel's router consumes and the QUIC connection will implement.
Committed before Wave 3 so the transport and tunnel agents build against a
stable cross-crate contract from isolated worktrees.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-25 18:10:17 +03:00

21 lines
517 B
TOML

[package]
name = "aura-transport"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Aura transport: QUIC (quinn) endpoint, HTTPS/H3 mimicry, padding"
[dependencies]
aura-proto.workspace = true
aura-crypto.workspace = true
quinn.workspace = true
tokio.workspace = true
bytes.workspace = true
rustls.workspace = true
rustls-pki-types.workspace = true
rand.workspace = true
tracing.workspace = true
thiserror.workspace = true
anyhow.workspace = true
async-trait.workspace = true