Cargo update and remove most duplicate dependencies (#531)

Co-authored-by: elkowar <5300871+elkowar@users.noreply.github.com>
This commit is contained in:
Niclas 2022-08-27 08:12:23 +00:00 committed by GitHub
parent 6657ef493e
commit 9977384b06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 241 additions and 456 deletions

683
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -19,11 +19,10 @@ version = "0.15.1"
[dependencies] [dependencies]
gtk = { version = "0.15", features = [ "v3_22" ] } gtk = { version = "0.15", features = [ "v3_22" ] }
gdk = { version = "*", features = ["v3_22"] } gdk = "0.15"
gio = { version = "*", features = ["v2_44"] } glib = "0.15"
glib = { version = "0.15.11"}
cairo-rs = "0.15.11" cairo-rs = "0.15"
gdk-pixbuf = "0.15" gdk-pixbuf = "0.15"
@ -42,7 +41,6 @@ serde_json = "1.0"
extend = "1" extend = "1"
grass = "0.11" grass = "0.11"
itertools = "0.10" itertools = "0.10"
debug_stub_derive = "0.3"
log = "0.4" log = "0.4"
pretty_env_logger = "0.4" pretty_env_logger = "0.4"
libc = "0.2" libc = "0.2"
@ -62,7 +60,7 @@ sysinfo = "0.24"
dyn-clone = "1.0" dyn-clone = "1.0"
wait-timeout = "0.2" wait-timeout = "0.2"
notify = "5.0.0-pre.14" notify = "=5.0.0-pre.14"
codespan-reporting = "0.11" codespan-reporting = "0.11"

View file

@ -4,10 +4,8 @@
#![feature(box_patterns)] #![feature(box_patterns)]
#![feature(slice_concat_trait)] #![feature(slice_concat_trait)]
#![feature(try_blocks)] #![feature(try_blocks)]
#![feature(nll)]
#![allow(rustdoc::private_intra_doc_links)] #![allow(rustdoc::private_intra_doc_links)]
extern crate gio;
extern crate gtk; extern crate gtk;
#[cfg(feature = "wayland")] #[cfg(feature = "wayland")]
extern crate gtk_layer_shell as gtk_layer_shell; extern crate gtk_layer_shell as gtk_layer_shell;

View file

@ -1,4 +1,4 @@
[toolchain] [toolchain]
channel = "nightly-2022-04-13" channel = "nightly-2022-08-27"
components = [ "rust-src" ] components = [ "rust-src" ]
profile = "default" profile = "default"