-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 1.1 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
[package]
name = "samba_printer_finder"
version = "0.0.1"
description = "A simple Utillity to find a smb (samba) Printer on the Network"
license = "GPL-3"
authors = [".J.E.B."]
edition = "2018"
build = "src/build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libc = "0.2.179"
once_cell = "1.21.3"
gtk = { version = "0.10.3", package = "gtk4", features = ["v4_20"] }
glib = "0.21.5"
oneshot = "0.1.11"
url = "2.5.8"
url-escape = "0.1.1"
[build-dependencies]
pkg-config = "0.3.32"
[package.metadata.bundle]
name = "Samba Printer Finder"
identifier = "io.github.jgr1585.SambaPrinterFinder"
resources = ["assets/images/*", "assets/icon.svg"]
icon = ["assets/images/32x32.png", "assets/images/32x32@2x.png", "assets/images/64x64.png", "assets/images/128x128.png", "assets/images/128x128@2x.png", "assets/images/256x256.png", "assets/images/256x256@2x.png"]
category = "Utility"
deb_dependency = ["libgtk-4-bin", "libglib2.0-bin", "libcups2t64", "samba-common"]
[package.metadata.appimage]
name = "Samba Printer Finder"
icon = "assets/icon.svg"
auto_link = true