alkcall 0.8.0 lands both graduation upstream asks (review 008): - U-2: the establisher → reply projection (ADR-049 amendment 3, Establishment::with_reply_field + open_channel_with_reply) — the bind-first 'bound' carrier - U-1: flavor-form open-op ids in discovery (ADR-047 amendment 3) — the direct/forwarded ops reconstruct their marker through discovery plus the bonus: in-tree ChannelRelay + HubLegTemplate (ADR-051) — the hub re-produce machinery is upstream now; 'bound' flows end-to-end per-hop truthful, realizing ADR-008 §6's sentence. OQ-TN-12 resolves upstream (the composition helper a hub proxy needed is alkcall's ChannelRelay); spec docs note the asks landed. No alktunnels API or wire change in this bump — the graduation implementation (tasks/tunnels) follows. Verification: cargo test 71 passed (91 all-features), clippy --all-targets -D warnings, fmt --check, wasm32-unknown-unknown check + clippy clean
35 lines
1.1 KiB
TOML
35 lines
1.1 KiB
TOML
[package]
|
|
name = "alktunnels"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.88"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Arbitrary tunnel protocol: bidirectional TCP, UDP, and unix-socket tunnels over alkcall channels. Producer/consumer protocol crate."
|
|
repository = "https://git.alk.dev/alkdev/alktunnels"
|
|
readme = "README.md"
|
|
keywords = ["tunnel", "proxy", "channels", "alkcall", "network"]
|
|
categories = ["network-programming", "asynchronous"]
|
|
exclude = [".opencode/", "AGENTS.md", "docs/reviews/", "docs/research/", "docs/plans/", "tasks/", "docs/sdd_process.md"]
|
|
|
|
[lib]
|
|
name = "alktunnels"
|
|
|
|
[features]
|
|
default = []
|
|
local = ["tokio/net"]
|
|
|
|
[dependencies]
|
|
alkcall = "0.8.0"
|
|
tokio = { version = "1", default-features = false, features = ["rt", "sync", "io-util", "macros", "time"] }
|
|
bytes = "1"
|
|
futures = "0.3"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tracing = "0.1"
|
|
thiserror = "2"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1", features = ["full", "test-util", "macros"] }
|
|
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
|
|
socket2 = "0.6"
|