Merge _configs/ into config/ for single configuration directory. Update all path references. Changes: - Move _configs/* to config/ - Update .gitignore for new patterns - No code references to _configs/ found Impact: -1 root directory (layout_conventions.md compliance)
40 lines
857 B
TOML
40 lines
857 B
TOML
[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 }
|
|
|
|
# Logging and tracing
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
# Serialization
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
# UUID and dates
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
|
|
# HTTP client (with cookies feature)
|
|
reqwest = { workspace = true }
|
|
|
|
# NATS JetStream
|
|
async-nats = { workspace = true }
|
|
|
|
# WebSocket (older version 0.20 for this crate)
|
|
tokio-tungstenite = { workspace = true }
|
|
|
|
# Other utilities
|
|
anyhow = { workspace = true }
|