[package]
name = "agentsync"
version = "1.14.5"
edition = "2024"
rust-version = "1.85"
description = "A fast CLI tool to sync AI agent configurations and MCP servers across Claude, Copilot, Cursor, and more using symbolic links."
license = "MIT"
repository = "https://github.com/dallay/agentsync"
homepage = "https://github.com/dallay/agentsync"
documentation = "https://github.com/dallay/agentsync#readme"
readme = "README.md"
keywords = ["ai", "agents", "cli", "configuration", "mcp"]
categories = ["command-line-utilities", "development-tools"]
authors = ["Yuniel Acosta <yunielacosta738@gmail.com>"]
exclude = [
".github/",
".gitignore",
"*.md",
"!README.md",
]
[dependencies]
clap = { version = "4.5", features = ["derive", "env"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
toml = "0.9"
anyhow = "1.0"
thiserror = "2.0"
colored = "3.0"
walkdir = "2.5"
pathdiff = "0.2"
[dev-dependencies]
tempfile = "3.15"
[profile.release]
lto = true
codegen-units = 1
strip = true
opt-level = "z"
[[bin]]
name = "agentsync"
path = "src/main.rs"
[lib]
name = "agentsync"
path = "src/lib.rs"