Files
AuraVPN/crates/aura-proto/Cargo.toml
T
xah30 0a045c248d refactor: move PacketConnection trait to aura-proto; decouple tunnel from transport
Worktree isolation is unavailable in this environment, so make Wave 3 safe for
same-tree parallel work instead: the PacketConnection contract now lives in
aura-proto (stable) and aura-tunnel no longer depends on aura-transport. With
transport and tunnel both depending only on proto (and not each other), the two
crates are independent leaves and can be built/edited concurrently without one
breaking the other's build. proto: 13 tests still green.

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

34 lines
1.2 KiB
TOML

[package]
name = "aura-proto"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Aura protocol: wire format, hybrid PKI handshake state machine, session"
[dependencies]
aura-crypto.workspace = true
aura-pki.workspace = true
bytes.workspace = true
serde.workspace = true
bincode.workspace = true
zeroize.workspace = true
hmac.workspace = true
sha2.workspace = true
rand.workspace = true
rustls-pki-types.workspace = true
thiserror.workspace = true
# Handshake signatures (ECDSA P-256 / SHA-256, ASN.1 DER). Already in the workspace lockfile.
ring = "0.17"
# Parse leaf cert DER (extract the EC SubjectPublicKeyInfo point) and decode PEM blocks
# (certificates + PKCS#8 keys) to DER. Already a workspace dependency and used by aura-pki, so
# this adds no new resolution and lets us avoid pulling in rustls-pemfile.
x509-parser.workspace = true
# The handshake and session are async over tokio::io::{AsyncRead, AsyncWrite}, so tokio must be a
# normal dependency (available via the workspace `full` feature set), not only a dev-dependency.
tokio.workspace = true
async-trait.workspace = true
anyhow.workspace = true
[dev-dependencies]
tokio.workspace = true