-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (64 loc) · 1.92 KB
/
Copy pathCargo.toml
File metadata and controls
80 lines (64 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 = "cortex-tui"
description = "Cortex CLI terminal user interface built on Cortex engine"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
[dependencies]
# Cortex TUI core (the TUI engine)
cortex-core = { path = "../cortex-core" }
# Centralized TUI components
cortex-tui-components = { path = "../cortex-tui-components" }
# TUI capture and debugging (dev/debug feature)
cortex-tui-capture = { path = "../cortex-tui-capture" }
# Cortex business logic
cortex-engine = { workspace = true }
cortex-protocol = { workspace = true }
cortex-common = { workspace = true }
cortex-login = { workspace = true }
cortex-agents = { workspace = true }
# TUI framework
ratatui = { workspace = true }
crossterm = { workspace = true }
# Async runtime
tokio = { workspace = true, features = ["full", "sync", "time", "macros"] }
tokio-stream = { workspace = true }
async-channel = { workspace = true }
async-trait = { workspace = true }
futures = { workspace = true }
# Serialization
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
toml = { workspace = true }
# Error handling
anyhow = { workspace = true }
thiserror = { workspace = true }
# Utilities
unicode-width = { workspace = true }
unicode-segmentation = { workspace = true }
chrono = { workspace = true }
uuid = { workspace = true }
tracing = { workspace = true }
base64 = { workspace = true }
dirs = { workspace = true }
hostname = { workspace = true }
reqwest = { workspace = true }
url = { workspace = true }
# Clipboard
arboard = { workspace = true }
# File search and fuzzy matching
walkdir = { workspace = true }
# External editor
which = { workspace = true }
# Audio notifications
rodio = { workspace = true }
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[dev-dependencies]
tokio-test = { workspace = true }
tempfile = { workspace = true }
[lints]
workspace = true