-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
94 lines (85 loc) · 2.66 KB
/
Copy pathCargo.toml
File metadata and controls
94 lines (85 loc) · 2.66 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[workspace]
members = [
"a2a",
"a2a-client",
"a2a-server",
"a2a-pb",
"a2a-grpc",
"a2a-slimrpc",
"a2acli",
"examples",
]
default-members = [
"a2a",
"a2a-client",
"a2a-server",
"a2a-pb",
"a2a-grpc",
"a2a-slimrpc",
"a2acli",
"examples",
]
resolver = "2"
[workspace.package]
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/a2aproject/a2a-rs"
rust-version = "1.85"
[workspace.dependencies]
# Internal crates
a2a = { package = "a2a-lf", path = "a2a", version = "0.3.0" }
a2a-client = { package = "a2a-client-lf", path = "a2a-client", version = "0.2.1", default-features = false }
a2a-server = { package = "a2a-server-lf", path = "a2a-server", version = "0.4.1", default-features = false }
a2a-pb = { package = "a2a-pb", path = "a2a-pb", version = "0.2.0" }
a2a-grpc = { package = "a2a-grpc", path = "a2a-grpc", version = "0.3.1", default-features = false }
a2a-slimrpc = { package = "a2a-slimrpc", path = "a2a-slimrpc", version = "0.2.3" }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
pbjson = "0.9"
pbjson-types = "0.9"
# Async runtime
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
futures = "0.3"
async-stream = "0.3"
async-trait = "0.1"
pin-project-lite = "0.2"
# HTTP
axum = { version = "0.8", features = ["macros"] }
reqwest = { version = "0.13", default-features = false, features = ["json", "stream", "charset", "http2", "system-proxy", "query"] }
tower = { version = "0.5", features = ["util"] }
tower-http = { version = "0.6", features = ["cors"] }
http = "1"
hyper = "1"
axum-server = {version = "0.8", default-features = false }
rustls = "0.23"
# gRPC + protobuf
tonic = "0.14"
tonic-build = "0.14"
tonic-prost = "0.14"
tonic-prost-build = "0.14"
tonic-tls = { version = "0.7", default-features = false }
prost = "0.14"
prost-types = "0.14"
pbjson-build = "0.9"
protoc-bin-vendored = "3"
slim_rpc = { package = "agntcy-slim-rpc", version = "2.0.0-alpha.7" }
slim_config = { package = "agntcy-slim-config", version = "0.12.6" }
slim_service = { package = "agntcy-slim-service", version = "0.11.6", features = [
"session",
] }
slim_datapath = { package = "agntcy-slim-datapath", version = "0.16.7" }
slim_auth = { package = "agntcy-slim-auth", version = "0.14.0" }
# Utilities
rcgen = { version = "0.14", default-features = false, features = ["crypto", "pem", "aws_lc_rs"] }
rustls-pemfile = "2"
chrono = { version = "0.4", features = ["serde"] }
base64 = "0.22"
thiserror = "2"
uuid = { version = "1", features = ["v7"] }
semver = "1"
tracing = "0.1"
auto_impl = "1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }