[package]
edition = "2024"
rust-version = "1.85"
name = "agentsync"
version = "1.14.5"
authors = ["Yuniel Acosta <yunielacosta738@gmail.com>"]
build = false
exclude = [
".github/",
".gitignore",
"*.md",
"!README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast CLI tool to sync AI agent configurations and MCP servers across Claude, Copilot, Cursor, and more using symbolic links."
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",
]
license = "MIT"
repository = "https://github.com/dallay/agentsync"
[lib]
name = "agentsync"
path = "src/lib.rs"
[[bin]]
name = "agentsync"
path = "src/main.rs"
[[test]]
name = "test_bug"
path = "tests/test_bug.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.colored]
version = "3.0"
[dependencies.pathdiff]
version = "0.2"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
features = ["preserve_order"]
[dependencies.thiserror]
version = "2.0"
[dependencies.toml]
version = "0.9"
[dependencies.walkdir]
version = "2.5"
[dev-dependencies.tempfile]
version = "3.15"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true