2025-12-26 18:36:23 +00:00
|
|
|
[package]
|
|
|
|
|
name = "vapora-syntaxis"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
rust-version.workspace = true
|
|
|
|
|
authors.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
description = "VAPORA adapter for syntaxis management"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
syntaxis-core = { path = "../syntaxis" }
|
|
|
|
|
|
|
|
|
|
# Async
|
|
|
|
|
tokio = { workspace = true }
|
2026-02-22 22:01:02 +00:00
|
|
|
futures = { workspace = true }
|
2025-12-26 18:36:23 +00:00
|
|
|
|
|
|
|
|
# Logging and tracing
|
|
|
|
|
tracing = { workspace = true }
|
|
|
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
|
|
|
|
|
|
# Serialization
|
|
|
|
|
serde = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
2026-02-22 22:01:02 +00:00
|
|
|
bytes = { workspace = true }
|
2025-12-26 18:36:23 +00:00
|
|
|
|
|
|
|
|
# UUID and dates
|
|
|
|
|
uuid = { workspace = true }
|
|
|
|
|
chrono = { workspace = true }
|
|
|
|
|
|
2026-02-22 22:01:02 +00:00
|
|
|
# HTTP client
|
|
|
|
|
reqwest = { workspace = true }
|
2025-12-26 18:36:23 +00:00
|
|
|
|
2026-02-22 22:01:02 +00:00
|
|
|
# NATS JetStream with NKey auth
|
|
|
|
|
platform-nats = { workspace = true }
|
2025-12-26 18:36:23 +00:00
|
|
|
|
2026-02-22 22:01:02 +00:00
|
|
|
# Stratum orchestration
|
|
|
|
|
stratum-orchestrator = { workspace = true }
|
|
|
|
|
stratum-graph = { workspace = true }
|
|
|
|
|
stratum-state = { workspace = true }
|
2025-12-26 18:36:23 +00:00
|
|
|
|
2026-02-22 22:01:02 +00:00
|
|
|
# WebSocket
|
|
|
|
|
tokio-tungstenite = { workspace = true }
|
|
|
|
|
|
|
|
|
|
# Error handling
|
2025-12-26 18:36:23 +00:00
|
|
|
anyhow = { workspace = true }
|
2026-02-22 22:01:02 +00:00
|
|
|
thiserror = { workspace = true }
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = []
|
|
|
|
|
orchestration = []
|
|
|
|
|
kogral = []
|