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)
33 lines
768 B
TOML
33 lines
768 B
TOML
[workspace]
|
|
# Independent package - not part of any workspace
|
|
|
|
[package]
|
|
name = "syntaxis-bridge"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.75"
|
|
authors = ["syntaxis contributors"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/syntaxis/core"
|
|
|
|
description = "Ecosystem bridge for integrating external systems with Syntaxis task management"
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "2"
|
|
anyhow = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
async-trait = "0.1"
|
|
tracing = "0.1"
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
chrono = "0.4"
|
|
|
|
# For the bridge API
|
|
axum = "0.8"
|
|
tower = "0.5"
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|