-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
49 lines (46 loc) · 1.67 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "turnon"
description = "Turn on devices in your network"
homepage = "https://github.com/swsnr/turnon"
repository = "https://github.com/swsnr/turnon"
license = "MPL-2.0"
authors = ["Sebastian Wiesner <[email protected]>"]
# Our version number. Since semver doesn't make much sense for UI applications
# which have no API we repurpose the version numer as follows:
#
# - major: Major new features or major changes to the UI, which may break the app for some users.
# - minor: User-visible features or bugfixes.
# - patch: Translation updates.
#
# Major and minor releases get release notes, but patch releases do not; this
# enables us to ship updates to translations whenever translators contributed
# new languages or made major updates, while still providing meaningful release
# notes for the last functional changes.
version = "2.3.1"
edition = "2021"
publish = false
build = "build.rs"
[dependencies]
adw = { package = "libadwaita", version = "0.7.0", features = ["v1_6"] }
async-channel = "2.3.1"
futures-util = { version = "0.3.31" }
glib = { version = "0.20.7", features = ["log", "log_macros"] }
gtk = { package = "gtk4", version = "0.9.5", features = ["gnome_47"] }
log = "0.4.22"
macaddr = { version = "1.0.1", default-features = false }
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
bitflags = "2.6.0"
semver = "1.0.24"
libc = "0.2.161"
[build-dependencies]
glob = "0.3.1"
[package.metadata.release]
pre-release-commit-message = "Release {{version}}"
tag-message = "Turn On {{tag_name}}"
publish = false
verify = false
push = false
sign-tag = true
sign-commit = true
pre-release-hook = ["scripts/prerelease.py", "{{tag_name}}", "{{date}}"]