Create crates/alknet-call with Cargo.toml, lib.rs, and module skeletons for the registry (spec, context, registration, env, discovery) and protocol (wire, pending, connection, adapter, abort) subsystems. Add the crate to the workspace members list. Depends on alknet-core (workspace path), irpc (workspace dep), tokio, serde, serde_json, async-trait, tracing, thiserror, uuid, and futures. Implements ProtocolHandler on ALPN alknet/call per docs/architecture/crates/call.
17 lines
315 B
TOML
17 lines
315 B
TOML
[workspace]
|
|
members = [
|
|
"crates/alknet-vault",
|
|
"crates/alknet-core",
|
|
"crates/alknet-call",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://git.alk.dev/alkdev/alknet"
|
|
|
|
[workspace.dependencies]
|
|
irpc = "0.16"
|
|
irpc-derive = "0.16" |