-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (50 loc) · 1.53 KB
/
Cargo.toml
File metadata and controls
59 lines (50 loc) · 1.53 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
[package]
name = "quick-notepad"
version = "1.0.3"
authors = ["Filip Domanski"]
edition = "2021"
description = "A modern dual-mode text editor for terminal and GUI"
repository = "https://github.com/DomanskiFilip/quick_notepad"
license = "custom"
keywords = ["editor", "text-editor", "tui", "gui", "terminal"]
categories = ["command-line-utilities", "text-editors"]
[[bin]]
name = "quick"
path = "src/main.rs"
[package.metadata.bundle]
name = "Quick Notepad"
identifier = "com.filipdomanski.quicknotepad"
icon = ["assets/icon.png"]
resources = []
copyright = "© 2026 Filip Domanski"
category = "Utility"
short_description = "Fast and simple text editor"
long_description = "A minimalist text editor with both terminal and GUI interfaces. Supports 25+ languages with syntax highlighting."
[package.metadata.bundle.linux]
desktop_file = "assets/quick-notepad.desktop"
[dependencies]
crossterm = "0.29"
arboard = { version = "3.4", features = ["wayland-data-control"] }
unicode-segmentation = "1.10"
unicode-width = "0.2.2"
# GUI dependencies
eframe = { version = "0.33", default-features = false, features = [
"default_fonts",
"glow",
"wayland",
"x11",
] }
egui = "0.33.3"
egui_extras = { version = "0.33.3", features = ["syntect"] }
# Shared dependencies
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# For auto-update functionality
reqwest = { version = "0.11", features = ["blocking", "json"] }
[dependencies.atspi-common]
version = "0.13.0"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true