-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (44 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
55 lines (44 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "ldp-protocol"
description = "LDP — LLM Delegate Protocol: identity-aware communication for multi-agent LLM systems"
version = "0.2.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/sunilp/ldp-protocol"
homepage = "https://ldp.sunilprakash.com"
documentation = "https://docs.rs/ldp-protocol"
readme = "README.md"
keywords = ["llm", "agents", "protocol", "delegation", "multi-agent"]
categories = ["network-programming", "web-programming"]
[features]
default = []
jamjet = []
[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
tokio-stream = { version = "0.1", features = ["sync"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# HTTP client
reqwest = { version = "0.11", default-features = false, features = ["json", "stream", "rustls-tls"] }
# Error handling
thiserror = "1"
async-trait = "0.1"
# IDs and time
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
# Tracing
tracing = "0.1"
# Misc
futures = "0.3"
sha2 = "0.10"
async-stream = "0.3"
# Signing
hmac = "0.12"
hex = "0.4"
subtle = "2"
# Replay detection
lru = "0.12"
[dev-dependencies]
tokio = { version = "1", features = ["full", "test-util"] }