[package]
edition = "2024"
rust-version = "1.88"
name = "ai-crew-sync"
version = "0.3.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MCP server that lets a team's AI coding agents (Claude Code, Codex, Cursor or any MCP client) exchange messages, coordinate tasks, share presence and keep shared notes, backed by Postgres"
readme = "README.md"
keywords = [
"mcp",
"claude",
"agents",
"coordination",
"postgres",
]
categories = [
"development-tools",
"web-programming::http-server",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/joaquinbejar/ai-crew-sync"
[lib]
name = "ai_crew_sync"
path = "src/lib.rs"
[[bin]]
name = "ai-crew-sync"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.axum]
version = "0.8"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.dotenvy]
version = "0.15"
[dependencies.futures]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.http]
version = "1"
[dependencies.rand]
version = "0.8"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.rmcp]
version = "3.0"
features = [
"server",
"macros",
"schemars",
"transport-streamable-http-server",
"server-side-http",
"tower",
"client",
"transport-streamable-http-client-reqwest",
"reqwest",
]
[dependencies.schemars]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio",
"tls-rustls-ring",
"postgres",
"uuid",
"chrono",
"json",
"migrate",
"macros",
]
default-features = false
[dependencies.subtle]
version = "2"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
[dependencies.tower]
version = "0.5"
[dependencies.tower-http]
version = "0.6"
features = [
"trace",
"cors",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
[profile.release]
lto = "thin"
codegen-units = 1
strip = true