-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
90 lines (76 loc) · 2.14 KB
/
Copy pathCargo.toml
File metadata and controls
90 lines (76 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[package]
name = "agentsync"
version = "1.49.1"
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]
bytes = "1.11.1"
# CLI
clap = { version = "4.5", features = ["derive", "env"] }
# Config parsing
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
toml = "1.0"
serde_yaml = "0.9"
regex = "1"
chrono = { version = "0.4", features = ["serde"] }
zip = "8"
flate2 = { version = "1.0", features = ["zlib"] }
tar = "0.4"
sha2 = "0.11"
# Error handling
anyhow = "1.0"
thiserror = "2.0"
# Terminal output
colored = "3.0"
dialoguer = "0.12"
# File system
walkdir = "2.5"
# Path handling
pathdiff = "0.2"
dirs = "6"
# HTTP + async runtime (added for skills.sh integration feature)
reqwest = { version = "0.13.3", features = ["json", "gzip", "stream"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs", "time"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] }
futures-util = "0.3"
lazy_static = "1.4"
# Semantic versioning for skill update resolution
semver = "1.0"
# Terminal detection for update check
is-terminal = "0.4"
# Temp directories for skill archive extraction
tempfile = "3.15"
urlencoding = "2.1"
url = "2.5"
ratatui = { version = "0.30.0", default-features = false, features = ["crossterm"] }
crossterm = "0.29.0"
[dev-dependencies]
rand = "0.10"
[profile.release]
lto = true
codegen-units = 1
strip = true
opt-level = 3 # Optimize for speed over size
[[bin]]
name = "agentsync"
path = "src/main.rs"
[lib]
name = "agentsync"
path = "src/lib.rs"