-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (71 loc) · 1.92 KB
/
Copy pathCargo.toml
File metadata and controls
80 lines (71 loc) · 1.92 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
[package]
name = "aisw"
version = "0.3.8"
edition = "2021"
rust-version = "1.80"
description = "Manage multiple accounts for Claude Code, Codex CLI, and Gemini CLI"
license = "MIT"
repository = "https://github.com/burakdede/aisw"
homepage = "https://burakdede.github.io/aisw/"
documentation = "https://burakdede.github.io/aisw/"
readme = "README.md"
keywords = ["cli", "claude", "codex", "gemini", "account-switcher"]
categories = ["command-line-utilities"]
include = [
"/Cargo.toml",
"/Cargo.lock",
"/README.md",
"/LICENSE",
"/build.rs",
"/src/**",
]
[[bin]]
name = "aisw"
path = "src/main.rs"
[lib]
name = "aisw"
path = "src/lib.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
dirs = "5"
dialoguer = "0.11"
console = "0.15"
chrono = { version = "0.4", features = ["serde"] }
which = "7"
anyhow = "1"
fs2 = "0.4"
base64 = "0.22"
libc = "0.2"
indicatif = "0.17"
comfy-table = "7"
semver = "1"
sha2 = "0.10"
[target.'cfg(target_os = "macos")'.dependencies]
keyring = { version = "3", features = ["apple-native"] }
security-framework = "3"
[target.'cfg(target_os = "windows")'.dependencies]
keyring = { version = "3", features = ["windows-native"] }
[target.'cfg(target_os = "linux")'.dependencies]
# Keep the native Secret Service backend plus Rust crypto support enabled on
# Linux. Also vendor libdbus so release and CI builds do not require the
# system dbus development package to be preinstalled.
keyring = { version = "3", features = ["linux-native-sync-persistent", "crypto-rust", "vendored"] }
[build-dependencies]
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
clap_mangen = "0.2"
serde = { version = "1", features = ["derive"] }
[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates = "3"
dirs = "5"
portable-pty = "0.8"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1