[package]
name = "agentsync"
version = "1.23.0"
edition = "2024"
rust-version = "1.89"
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"
serde_yaml = "0.9"
regex = "1"
chrono = { version = "0.4", features = ["serde"] }
zip = "7"
flate2 = { version = "1.0", features = ["zlib"] }
tar = "0.4"
sha2 = "0.10"
anyhow = "1.0"
thiserror = "2.0"
colored = "3.0"
dialoguer = "0.11"
walkdir = "2.5"
pathdiff = "0.2"
reqwest = { version = "0.13.1", features = ["json", "gzip", "stream", "blocking"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs"] }
tracing = "0.1"
tracing-subscriber = "0.3"
futures-util = "0.3"
lazy_static = "1.4"
semver = "1.0"
tempfile = "3.15"
urlencoding = "2.1"
[dev-dependencies]
rand = "0.9"
[profile.release]
lto = true
codegen-units = 1
strip = true
opt-level = 3
[[bin]]
name = "agentsync"
path = "src/main.rs"
[lib]
name = "agentsync"
path = "src/lib.rs"