59 lines
1.2 KiB
TOML
59 lines
1.2 KiB
TOML
|
|
[package]
|
||
|
|
name = "vapora-a2a"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
repository.workspace = true
|
||
|
|
rust-version.workspace = true
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
# Internal
|
||
|
|
vapora-agents = { workspace = true }
|
||
|
|
vapora-shared = { workspace = true }
|
||
|
|
|
||
|
|
# Web
|
||
|
|
axum = { workspace = true }
|
||
|
|
tokio = { workspace = true, features = ["full"] }
|
||
|
|
tower = { workspace = true }
|
||
|
|
futures = { workspace = true }
|
||
|
|
|
||
|
|
# Serialization
|
||
|
|
serde = { workspace = true, features = ["derive"] }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
|
||
|
|
# Error handling
|
||
|
|
thiserror = { workspace = true }
|
||
|
|
|
||
|
|
# Datetime
|
||
|
|
chrono = { workspace = true, features = ["serde"] }
|
||
|
|
|
||
|
|
# Logging
|
||
|
|
tracing = { workspace = true }
|
||
|
|
tracing-subscriber = { workspace = true }
|
||
|
|
|
||
|
|
# UUID
|
||
|
|
uuid = { workspace = true, features = ["v4", "serde"] }
|
||
|
|
|
||
|
|
# HTTP client
|
||
|
|
reqwest = { workspace = true, features = ["json"] }
|
||
|
|
|
||
|
|
# Async
|
||
|
|
async-trait = { workspace = true }
|
||
|
|
|
||
|
|
# Database
|
||
|
|
surrealdb = { workspace = true }
|
||
|
|
|
||
|
|
# Message Queue
|
||
|
|
async-nats = { workspace = true }
|
||
|
|
|
||
|
|
# Concurrent data structures
|
||
|
|
dashmap = "6.1"
|
||
|
|
|
||
|
|
# Metrics
|
||
|
|
prometheus = { workspace = true }
|
||
|
|
lazy_static = { workspace = true }
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
axum-test = { workspace = true }
|