Use gtk4-rs from crates.io instead from their git.

The gtk4 crate finally had its first release, so we no longer have to use their git repository directly.
This commit is contained in:
Tom A. Wagner
2021-06-25 15:03:29 +02:00
parent 81467154d9
commit 74ffb06b40
2 changed files with 43 additions and 22 deletions

View File

@@ -13,8 +13,8 @@ categories = ["gui", "multimedia"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
gtk = { git = "https://github.com/gtk-rs/gtk4-rs/", package = "gtk4" }
pipewire = { git = "https://gitlab.freedesktop.org/pipewire/pipewire-rs", branch = "main" }
gtk = { version = "0.1", package = "gtk4" }
log = "0.4.11"
env_logger = "0.8.2"