-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (58 loc) · 1.75 KB
/
Cargo.toml
File metadata and controls
65 lines (58 loc) · 1.75 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
[workspace]
members = [
"a2a",
"a2a-client",
"a2a-server",
"a2a-pb",
"a2a-grpc",
"a2a-slimrpc",
"a2acli",
"examples/helloworld",
]
resolver = "2"
[workspace.package]
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/agntcy/a2a-rs"
rust-version = "1.85"
[workspace.dependencies]
# Internal crates
a2a = { package = "agntcy-a2a", path = "a2a", version = "0.2.5" }
a2a-client = { package = "agntcy-a2a-client", path = "a2a-client", version = "0.1.14" }
a2a-server = { package = "agntcy-a2a-server", path = "a2a-server", version = "0.2.7" }
a2a-pb = { package = "agntcy-a2a-pb", path = "a2a-pb", version = "0.1.7" }
a2a-grpc = { package = "agntcy-a2a-grpc", path = "a2a-grpc", version = "0.1.12" }
a2a-slimrpc = { package = "agntcy-a2a-slimrpc", path = "a2a-slimrpc", version = "0.1.9" }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
pbjson = "0.7"
pbjson-types = "0.7"
# Async runtime
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
futures = "0.3"
async-trait = "0.1"
pin-project-lite = "0.2"
# HTTP
axum = { version = "0.8", features = ["macros"] }
reqwest = { version = "0.12", features = ["json", "stream"] }
tower = { version = "0.5", features = ["util"] }
tower-http = { version = "0.6", features = ["cors"] }
hyper = "1"
# gRPC + protobuf
tonic = "0.13"
tonic-build = "0.13"
prost = "0.13"
prost-types = "0.13"
pbjson-build = "0.7"
protoc-bin-vendored = "3"
slim_bindings = { package = "agntcy-slim-bindings", version = "1.3.0" }
# Utilities
chrono = { version = "0.4", features = ["serde"] }
base64 = "0.22"
thiserror = "2"
uuid = { version = "1", features = ["v7"] }
semver = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }