-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 893 Bytes
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 893 Bytes
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
[package]
name = "claude-code-switcher"
version = "0.12.0"
edition = "2024"
authors = ["cupnfish <cupnfish@icloud.com>"]
repository = "https://github.com/Cupnfish/claude-code-switcher"
description = "A CLI tool for managing Claude Code setting snapshots and templates"
license = "MIT"
[dependencies]
clap = { version = "4.6", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
dirs = "6.0"
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
regex = "1.12"
uuid = { version = "1.22", features = ["v4", "serde"] }
inquire = "0.9"
atty = "0.2"
console = "0.16"
crossterm = "0.29.0"
unicode-segmentation = "1.12.0"
unicode-width = "0.2.2"
reqwest = { version = "0.13", features = ["blocking", "json"] }
[[bin]]
name = "ccs"
path = "src/main.rs"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = 'abort'
strip = true