-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 1.18 KB
/
Copy pathCargo.toml
File metadata and controls
36 lines (32 loc) · 1.18 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
[package]
name = "capsync"
version = "2.2.4"
edition = "2024"
authors = ["pa1nark"]
description = "A simple tool to sync your AI coding skills across different tools."
license = "CC0-1.0"
repository = "https://github.com/pixincreate/CapSync"
homepage = "https://github.com/pixincreate/CapSync"
keywords = ["ai", "skills", "sync", "capabilities"]
categories = ["command-line-utilities", "development-tools"]
rust-version = "1.85"
[[bin]]
name = "capsync"
path = "src/main.rs"
[dependencies]
clap = { version = "4.6", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
toml = "1.1"
dirs = "6.0"
anyhow = "1.0"
tempfile = "3.27"
shellexpand = "3.1"
# Use system libgit2/OpenSSL by default so Linux `cargo install` does not
# depend on vendored OpenSSL source builds and local Perl module availability.
git2 = { version = "0.21.0", features = ["https", "ssh"] }
[target.'cfg(target_os = "macos")'.dependencies]
# Keep vendored libgit2/OpenSSL on macOS to preserve the Darwin build stability
# we needed for release packaging and git transport behavior.
git2 = { version = "0.21.0", features = ["vendored-libgit2", "vendored-openssl", "https", "ssh"] }
[dev-dependencies]
tempfile = "3.27"