-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
94 lines (79 loc) · 2.44 KB
/
Cargo.toml
File metadata and controls
94 lines (79 loc) · 2.44 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
91
92
93
94
[workspace]
resolver = "2"
members = [
"src-tauri",
"src-tauri/crates/core",
"src-tauri/crates/pty",
"src-tauri/crates/watcher",
"src-tauri/crates/claude_cli",
]
default-members = ["src-tauri"]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.88"
license = "MIT"
repository = "https://github.com/cuonghx-dev/claude-code-gui"
authors = ["cuonghx <cuonghx@gu-tech.com>"]
[workspace.dependencies]
# Serialization / types
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
ts-rs = { version = "9", features = ["serde-compat", "uuid-impl", "chrono-impl", "serde-json-impl"] }
# Errors / logging
thiserror = "1"
anyhow = "1"
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
# Filesystem / paths
walkdir = "2"
glob = "0.3"
globset = "0.4"
ignore = "0.4"
# Crypto / IDs / time
sha2 = "0.10"
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
# Networking / git
reqwest = { version = "0.12", features = ["json", "rustls-tls", "stream"], default-features = false }
git2 = { version = "0.19", features = ["vendored-libgit2"], default-features = false }
# Async runtime
tokio = { version = "1", features = ["fs", "process", "sync", "macros", "rt-multi-thread", "io-util", "signal", "time"] }
# MCP
rmcp = "0.1"
# Regex / lazy
regex = "1"
once_cell = "1"
# PTY
portable-pty = "0.8"
strip-ansi-escapes = "0.2"
# Watcher
notify = "6"
notify-debouncer-mini = "0.4"
# Tauri
tauri = { version = "2" }
tauri-build = { version = "2", features = [] }
tauri-plugin-dialog = "2"
tauri-plugin-shell = "2"
tauri-plugin-fs = "2"
tauri-plugin-os = "2"
tauri-plugin-process = "2"
tauri-plugin-store = "2"
tauri-plugin-opener = "2"
tauri-plugin-updater = "2"
tauri-plugin-single-instance = "2"
tauri-plugin-deep-link = "2"
# Test utilities
tempfile = "3"
insta = { version = "1", features = ["yaml", "json"] }
[profile.release]
opt-level = "s"
lto = "thin"
codegen-units = 1
strip = "symbols"
panic = "abort"
[profile.dev]
opt-level = 0
debug = 1