[package]
edition = "2024"
rust-version = "1.93"
name = "opensymphony"
version = "1.3.1"
authors = ["Leonardo Gonzalez <leonardo.gonzalez@trilogy.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust implementation of the OpenAI Symphony orchestration design"
homepage = "https://opensymphony.dev"
readme = "README.md"
keywords = [
"ai",
"agents",
"orchestration",
"linear",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/kumanday/OpenSymphony"
resolver = "2"
[lib]
name = "opensymphony"
path = "src/lib.rs"
[[bin]]
name = "opensymphony"
path = "src/main.rs"
[[test]]
name = "client_resilience"
path = "tests/client_resilience.rs"
[[test]]
name = "control_plane"
path = "tests/control_plane.rs"
[[test]]
name = "debug"
path = "tests/debug.rs"
[[test]]
name = "doctor"
path = "tests/doctor.rs"
[[test]]
name = "fake_server_contract"
path = "tests/fake_server_contract.rs"
[[test]]
name = "help"
path = "tests/help.rs"
[[test]]
name = "hierarchy_selection"
path = "tests/hierarchy_selection.rs"
[[test]]
name = "init"
path = "tests/init.rs"
[[test]]
name = "install"
path = "tests/install.rs"
[[test]]
name = "issue_session_runner"
path = "tests/issue_session_runner.rs"
[[test]]
name = "linear_client"
path = "tests/linear_client.rs"
[[test]]
name = "live_local_suite"
path = "tests/live_local_suite.rs"
[[test]]
name = "live_pinned_server"
path = "tests/live_pinned_server.rs"
[[test]]
name = "reducer"
path = "tests/reducer.rs"
[[test]]
name = "run"
path = "tests/run.rs"
[[test]]
name = "scheduler"
path = "tests/scheduler.rs"
[[test]]
name = "snapshot_serialization"
path = "tests/snapshot_serialization.rs"
[[test]]
name = "supervisor"
path = "tests/supervisor.rs"
[[test]]
name = "transport_config"
path = "tests/transport_config.rs"
[[test]]
name = "tui"
path = "tests/tui.rs"
[[test]]
name = "update"
path = "tests/update.rs"
[[test]]
name = "workspace_manager"
path = "tests/workspace_manager.rs"
[dependencies.async-stream]
version = "0.3"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.8"
features = [
"macros",
"ws",
]
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"serde",
]
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.ftui]
version = "0.2.1"
features = ["crossterm"]
[dependencies.futures-util]
version = "0.3"
[dependencies.liquid]
version = "0.26"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"json",
"rustls-tls",
"stream",
]
default-features = false
[dependencies.reqwest-eventsource]
version = "0.6"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "=0.3.47"
[dependencies.tokio]
version = "1"
features = [
"fs",
"io-std",
"io-util",
"macros",
"net",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
]
[dependencies.tokio-tungstenite]
version = "0.24"
features = ["rustls-tls-native-roots"]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dependencies.unicode-width]
version = "0.2"
[dependencies.url]
version = "2"
[dependencies.uuid]
version = "1"
features = [
"serde",
"v4",
]
[target."cfg(unix)".dependencies.rustix]
version = "1"
features = ["process"]
[lints.clippy]
dbg_macro = "warn"
manual_assert = "warn"
todo = "warn"
unnecessary_wraps = "warn"
unwrap_used = "warn"
[lints.rust]
unsafe_code = "forbid"
unused_lifetimes = "warn"
unused_macro_rules = "warn"
unused_qualifications = "warn"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1