-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (52 loc) · 1.65 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (52 loc) · 1.65 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
[workspace]
resolver = "2"
members = ["crates/pawscope-core", "crates/pawscope-copilot", "crates/pawscope-claude", "crates/pawscope-codex", "crates/pawscope-opencode", "crates/pawscope-gemini", "crates/pawscope-aider", "crates/pawscope-server"]
[workspace.package]
version = "1.11.0"
edition = "2024"
rust-version = "1.87"
license = "MIT"
[workspace.dependencies]
anyhow = "1"
thiserror = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[package]
name = "pawscope"
version.workspace = true
edition.workspace = true
license.workspace = true
[[bin]]
name = "pawscope"
path = "src/main.rs"
[dependencies]
pawscope-core = { path = "crates/pawscope-core" }
pawscope-copilot = { path = "crates/pawscope-copilot" }
pawscope-claude = { path = "crates/pawscope-claude" }
pawscope-codex = { path = "crates/pawscope-codex" }
pawscope-opencode = { path = "crates/pawscope-opencode" }
pawscope-gemini = { path = "crates/pawscope-gemini" }
pawscope-aider = { path = "crates/pawscope-aider" }
pawscope-server = { path = "crates/pawscope-server" }
axum = { version = "0.8", features = ["ws"] }
clap = { version = "4", features = ["derive"] }
tokio.workspace = true
anyhow.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
open = "5"
[dev-dependencies]
tempfile = "3"
chrono = { version = "0.4", features = ["serde"] }
rusqlite = { version = "0.32", features = ["bundled"] }
serde_json.workspace = true
tokio.workspace = true
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = true