Some checks failed
Build - Verify Code & Build Binaries / Check Code Format (push) Has been cancelled
Build - Verify Code & Build Binaries / Lint with Clippy (push) Has been cancelled
Build - Verify Code & Build Binaries / Test Suite (push) Has been cancelled
Build - Verify Code & Build Binaries / Cargo Check (push) Has been cancelled
Build - Verify Code & Build Binaries / Security Audit (push) Has been cancelled
Build - Verify Code & Build Binaries / Build (Debug) - macos-latest (push) Has been cancelled
Build - Verify Code & Build Binaries / Build (Debug) - ubuntu-latest (push) Has been cancelled
Build - Verify Code & Build Binaries / Build (Debug) - windows-latest (push) Has been cancelled
Build - Verify Code & Build Binaries / Build (Release) - macos-latest (push) Has been cancelled
Build - Verify Code & Build Binaries / Build (Release) - ubuntu-latest (push) Has been cancelled
Build - Verify Code & Build Binaries / Build (Release) - windows-latest (push) Has been cancelled
CI/CD with Staging Preset / Validate Installation with Staging Preset (macos-latest) (push) Has been cancelled
CI/CD with Staging Preset / Validate Installation with Staging Preset (ubuntu-latest) (push) Has been cancelled
CI/CD with Staging Preset / Validate Documentation (push) Has been cancelled
Build - Verify Code & Build Binaries / All Checks Passed (push) Has been cancelled
CI/CD with Staging Preset / Build and Test with Staging Preset (push) Has been cancelled
CI/CD with Staging Preset / Integration Test with Docker Compose (push) Has been cancelled
CI/CD with Staging Preset / Test Summary (push) Has been cancelled
platform - Add orchestration.rs and kogral_bridge.rs to syntaxis-vapora - Replace async-nats with platform-nats (NKey auth support) - Wire stratum-orchestrator, stratum-graph, stratum-state deps - Upgrade surrealdb 2.3 → 3 with kv-surrealkv and rustls features - Consolidate core/Cargo.toml into root workspace (remove virtual manifest) - Add shared/rust/nickel.rs for Nickel config integration - Rename CLI binary from syntaxis-cli to syntaxis
30 lines
705 B
TOML
30 lines
705 B
TOML
[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"
|