From 380c64784be8eac813ac18268e831c162aa11ee7 Mon Sep 17 00:00:00 2001 From: Pedro Burgos Date: Tue, 24 Nov 2020 14:33:59 +0100 Subject: [PATCH] Removed unused dependency (#63) --- Cargo.lock | 50 -------------------------------------------------- Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 51 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b73b1c0..bc5ff20 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -341,7 +341,6 @@ dependencies = [ "filedescriptor", "gdk", "gdk-pixbuf", - "gdkx11", "gio", "glib", "grass", @@ -619,45 +618,6 @@ dependencies = [ "system-deps", ] -[[package]] -name = "gdkx11" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b89606baa221f9b8d8aa81924fd448c6b107d20de949f0fbf9a4ec203bb54b63" -dependencies = [ - "bitflags", - "gdk", - "gdk-pixbuf", - "gdk-pixbuf-sys", - "gdk-sys", - "gdkx11-sys", - "gio", - "gio-sys", - "glib", - "glib-sys", - "gobject-sys", - "libc", - "pango", - "x11", -] - -[[package]] -name = "gdkx11-sys" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6710388d530f3178ccbeb65cbafdf497a5772c4409eaf574ee9fa461af0a3d09" -dependencies = [ - "gdk-pixbuf-sys", - "gdk-sys", - "gio-sys", - "glib-sys", - "gobject-sys", - "libc", - "pango-sys", - "system-deps", - "x11", -] - [[package]] name = "getrandom" version = "0.1.15" @@ -2152,16 +2112,6 @@ dependencies = [ "winapi-build", ] -[[package]] -name = "x11" -version = "2.18.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77ecd092546cb16f25783a5451538e73afc8d32e242648d54f4ae5459ba1e773" -dependencies = [ - "libc", - "pkg-config", -] - [[package]] name = "xmlparser" version = "0.13.3" diff --git a/Cargo.toml b/Cargo.toml index ea778f0..57d96fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ gtk = { version = "0.9", features = [ "v3_16" ] } gdk = { version = "", features = ["v3_16"] } gio = { version = "", features = ["v2_44"] } glib = { version = "", features = ["v2_44"] } -gdkx11 = "0.9" + gdk-pixbuf = "0.9" regex = "1"