-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (49 loc) · 1.32 KB
/
Cargo.toml
File metadata and controls
58 lines (49 loc) · 1.32 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
[package]
name = "void-terminal"
version = "1.3.0"
edition = "2021"
description = "Infinite canvas terminal emulator — GPU-accelerated, cross-platform"
license = "MIT"
repository = "https://github.com/190km/void"
homepage = "https://github.com/190km/void"
authors = ["190km"]
readme = "README.md"
keywords = ["terminal", "gpu", "canvas", "egui", "wgpu"]
categories = ["command-line-utilities", "gui"]
[[bin]]
name = "void"
path = "src/main.rs"
[dependencies]
# GUI
eframe = { version = "0.30", default-features = false, features = ["wgpu", "wayland", "x11"] }
egui = "0.30"
# Terminal emulation
alacritty_terminal = "0.25.1"
portable-pty = "0.9"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# Image decoding (app icon, brand logo)
image = { version = "0.25", default-features = false, features = ["png"] }
# Utilities
anyhow = "1"
log = "0.4"
env_logger = "0.11"
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
directories = "5"
arboard = "3"
rfd = "0.15"
minreq = { version = "2", features = ["https-native"] }
sha2 = "0.10"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[profile.dist]
inherits = "release"
lto = "thin"
[profile.dev]
opt-level = 1 # Slightly optimize dev builds for usable performance