-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (59 loc) · 1.43 KB
/
Cargo.toml
File metadata and controls
66 lines (59 loc) · 1.43 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
[package]
name = "scriptboard"
version = "1.2.0"
edition = "2024"
license = "GPL-3.0-only"
[package.metadata.winresource]
FileDescription = "Scriptboard"
FileVersion = "1.2.0"
ProductName = "Scriptboard"
Comments = "A simple desktop software to execute saved script files."
OriginalFilename = "scriptboard.exe"
InternalName = "scriptboard.exe"
LegalCopyright = "Copyright (C) 2025 uAtomicBoolean"
[dependencies]
slint = { version = "1.11.0", features = ["renderer-skia"] }
dirs = "6.0.0"
rfd = "0.15.3"
once_cell = "1.21.3"
shlex = "1.3.0"
dotenv = "0.15.0"
uuid = { version = "1.17.0", features = ["v4"] }
serde = "1.0.219"
serde_json = "1.0.140"
open = "5.3.2"
fern = "0.7.1"
humantime = "2.2.0"
log = "0.4.27"
[build-dependencies]
slint-build = "1.11.0"
dotenv = "0.15.0"
[target.'cfg(windows)'.build-dependencies]
winresource = "0.1.19"
[profile.dev]
incremental = true
[profile.release]
codegen-units = 1
lto = true
opt-level = "s"
panic = "abort"
strip = true
[package.metadata.packager]
version = "1.2.0"
authors = ["uAtomicBoolean"]
copyright = "Copyright (C) 2025 uAtomicBoolean"
category = "DeveloperTool"
before-packaging-command = "cargo build --release"
product-name = "Scriptboard"
identifier = "com.scriptboard.app"
resources = [
"Cargo.toml",
"src",
"res/icon.ico",
"res/icon.png",
"res/32x32.png",
]
icons = ["res/32x32.png", "res/icon.png", "res/icon.ico"]
binaries_dir = "target/release"
out_dir = "dist/"
licenseFile = "LICENSE.txt"