[package]
edition = "2021"
name = "agent-phone"
version = "0.1.0"
authors = ["Vlad Bordei <bordeivlad@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Minimal sync RPC between two AI agents (Rust port of @p-vbordei/agent-phone). Self-custody keys, Noise-framework handshake, DID-bound WebSocket."
homepage = "https://github.com/p-vbordei/agent-phone-rs"
documentation = "https://docs.rs/agent-phone"
readme = "README.md"
keywords = [
"noise",
"websocket",
"rpc",
"did",
"agent",
]
categories = [
"cryptography",
"network-programming",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/p-vbordei/agent-phone-rs"
[lib]
name = "agent_phone"
path = "src/lib.rs"
[[example]]
name = "quickstart"
path = "examples/quickstart.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "did"
path = "tests/did.rs"
[[test]]
name = "e2e"
path = "tests/e2e.rs"
[[test]]
name = "envelope"
path = "tests/envelope.rs"
[[test]]
name = "frame"
path = "tests/frame.rs"
[[test]]
name = "noise"
path = "tests/noise.rs"
[dependencies.blake2]
version = "0.10"
[dependencies.bs58]
version = "0.5"
[dependencies.chacha20poly1305]
version = "0.10"
[dependencies.curve25519-dalek]
version = "4.1"
[dependencies.ed25519-dalek]
version = "2.1"
features = ["rand_core"]
[dependencies.futures-util]
version = "0.3"
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_jcs]
version = "0.1"
[dependencies.serde_json]
version = "1.0"
features = ["preserve_order"]
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
"net",
"time",
"io-util",
]
[dependencies.tokio-tungstenite]
version = "0.24"
[dependencies.url]
version = "2"
[dependencies.urlencoding]
version = "2"
[dev-dependencies.anyhow]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = ["full"]