41 lines
1 KiB
TOML
41 lines
1 KiB
TOML
[package]
|
|
name = "syntaxis-integration"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.75"
|
|
authors = ["Provctl Contributors"]
|
|
license = "MIT"
|
|
repository = "https://github.com/provctl"
|
|
|
|
description = "Integration client for syncing ecosystem crate operations with Syntaxis task management"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_yaml = "0.9"
|
|
thiserror = "2"
|
|
anyhow = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
|
|
|
|
# HTTP client for Syntaxis API
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
|
|
# Async utilities
|
|
async-trait = "0.1"
|
|
futures = "0.3"
|
|
|
|
# UUID generation
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
|
|
# Date/time
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
# Syntaxis bridge for integration interfaces
|
|
syntaxis-bridge = { path = "../../../syntaxis/core/crates/syntaxis-bridge", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
tempfile = "3"
|
|
mockall = "0.14"
|