-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (60 loc) · 1.9 KB
/
Cargo.toml
File metadata and controls
74 lines (60 loc) · 1.9 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
[package]
name = "terminalg"
version = "0.1.0"
edition = "2021"
rust-version = "1.93"
authors = ["Your Name"]
description = "GPU-accelerated terminal UI with integrated artifact viewing and test execution"
license = "MIT OR Apache-2.0"
repository = "https://github.com/yourusername/terminalg"
keywords = ["terminal", "gpu", "ui", "gpui", "artifacts"]
categories = ["command-line-utilities", "development-tools"]
[lints.rust]
unsafe_code = "forbid"
unused_must_use = "deny"
[lints.clippy]
# Lint groups set to lower priority so specific overrides work
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
# Allow multiple crate versions - these come from transitive dependencies
multiple_crate_versions = "allow"
[dependencies]
# UI Framework (Phase 1.4)
gpui = { git = "https://github.com/zed-industries/zed", tag = "v0.220.3" }
# Async Runtime (Phase 1.4)
smol = "2.0"
futures = "0.3"
# Terminal (Phase 2)
# alacritty_terminal = "0.12"
# pty = "0.2"
# Configuration & Settings
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
dirs = "5.0"
notify = "6.0"
# Error handling & logging
anyhow = "1.0"
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
# Markdown & Text (Phase 3)
# pulldown-cmark = "0.9"
# rope = "0.1"
# Image support (Phase 3)
# image = { version = "0.24", features = ["tiff"] }
# macOS font dependencies - lock to Zed v0.220.3 compatible versions
[target.'cfg(target_os = "macos")'.dependencies]
core-text = "=21.0.0"
# Platform-specific (Phase 2 - PTY management)
# [target.'cfg(unix)'.dependencies]
# libc = "0.2"
# [target.'cfg(windows)'.dependencies]
# windows = { version = "0.51", features = ["Win32_System_Console"] }
[dev-dependencies]
tempfile = "3.0"
[profile.release]
opt-level = 3
lto = true
strip = true