-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (33 loc) · 999 Bytes
/
Cargo.toml
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
[package]
name = "slightlybettertext"
version = "1.0.0"
description = "A simple minimal text-editor"
authors = ["Demetz Benjamin"]
license-file = "LICENSE"
readme = "README.md"
edition = "2021"
[dependencies]
directories = "6.0.0"
global-hotkey = "0.6.3"
iced = { version = "0.13.1", features=["highlighter", "tokio", "debug", "image"] }
log = "0.4.25"
rfd = "0.15.2"
serde = "1.0.217"
serde_json = "1.0.136"
simplelog = "0.12.2"
tokio = { version = "1.43.0", features = ["fs"] }
[profile.release]
opt-level = 3 # Focus on performance
lto = true
codegen-units = 1
strip = true # Removed debugging symbols
#panic = "abort" # Removes exception tree
[package.metadata.packager]
product-name = "SlightlyBetterText"
identifier = "sbt.slightlybettertext.app"
category = "Utility"
homepage = "https://github.com/Benji377/SlightlyBetterText"
icons = ["src/assets/images/logo.png"]
licenseFile = "LICENSE"
formats = ["all"]
before-packaging-command = "cargo build --release --no-default-features"