Skip to content

Commit 10d0d7c

Browse files
committed
Updated Cargo.toml:
- Updated reuse copyright year - Added manifest docs link in comment - Populated [package] - Updated [dependancies]: - Updated gtk4 and gdk4 from 0.4.8 to 0.8.2 - Updated libadwaita from 0.1.1 to 0.6.0 - Added gtk4_macros (it was split from gtk4) - Updated [build-dependancies]: - Replaced libadwaita with glib-build-tools (it was split from gtk4/libadwaita) Signed-off-by: Deren Vural <35734401+derenv@users.noreply.github.com>
1 parent 6bbbd53 commit 10d0d7c

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed

Cargo.toml

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,27 @@
1-
# SPDX-FileCopyrightText: 2022 Deren Vural
1+
# SPDX-FileCopyrightText: 2024 Deren Vural
22
# SPDX-License-Identifier: GPL-3.0-or-later
33

4+
# https://doc.rust-lang.org/cargo/reference/manifest.html
45
[package]
56
name = "gtk4-nvidia-monitor-rust"
6-
version = "0.1.0"
7+
description = "A gtk-rs app for interacting with Nvidia GPU management interfaces like nvidia-settings and nvidia-smi."
8+
version = "0.2.0"
9+
homepage = "https://github.com/derenv/gtk4-nvidia-monitor-rust"
10+
repository = "https://github.com/derenv/gtk4-nvidia-monitor-rust"
11+
license = "GPL-3.0-or-later"
12+
keywords = ["gpu", "nvidia", "gtk4-rs"]
13+
categories = ["hardware-support"]
14+
readme = "README.md"
715
edition = "2021"
16+
authors = ["Deren Vural <35734401+derenv@users.noreply.github.com>"]
17+
rust-version = "1.78.0"
18+
build = "build.rs"
819

920
[dependencies]
10-
adwaita = { version = "^0.1.1", package = "libadwaita" }
11-
gtk = { version = "^0.4.8", package = "gtk4" }
12-
gdk = { version = "^0.4.8", package = "gdk4" }
13-
gtk4_macros = { version = "^0.5.2", package = "gtk4-macros" }
21+
adwaita = { version = "^0.6.0", package = "libadwaita" }
22+
gtk = { version = "^0.8.2", package = "gtk4" }
23+
gdk = { version = "^0.8.2", package = "gdk4" }
24+
gtk4_macros = { version = "^0.8.2", package = "gtk4-macros" }
1425

1526
#serde = { version = "1.0", features = ["derive"] }
1627
#serde_json = "1.0"
@@ -20,4 +31,4 @@ gtk4_macros = { version = "^0.5.2", package = "gtk4-macros" }
2031
#libappindicator = { version = "^0.7.1", package = "libappindicator" }
2132

2233
[build-dependencies]
23-
adwaita = { version = "^0.1.1", package = "libadwaita" }
34+
glib-build-tools = { version = "^0.19.0", package = "glib-build-tools" }

0 commit comments

Comments
 (0)