Skip to content

Commit

Permalink
Merge pull request #589 from xou816/update-gtkrs
Browse files Browse the repository at this point in the history
update gtk rs
  • Loading branch information
xou816 committed Feb 12, 2023
2 parents 2f8cc82 + 3398418 commit d1b7e61
Show file tree
Hide file tree
Showing 39 changed files with 649 additions and 1,040 deletions.
108 changes: 60 additions & 48 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,20 @@ edition = "2018"
license = "MIT"

[dependencies.gtk]
version = "^0.4.1"
version = "^0.6.0"
package = "gtk4"
features = ["gnome_42"]

[dependencies.gdk]
version = "^0.4.0"
version = "^0.6.0"
package = "gdk4"

[dependencies.gio]
version = "^0.15.7"
version = "^0.17.0"
features = ["v2_60"]

[dependencies.glib]
version = "^0.15.9"
version = "^0.17.0"
features = ["v2_60"]

[dependencies.librespot]
Expand All @@ -31,7 +32,6 @@ version = "2.25.2"
version = "1"
features = ["rt", "macros", "sync"]


[dependencies.futures]
package = "futures"
version = "0.3.18"
Expand All @@ -57,8 +57,8 @@ features = ["gettext-system"]

[dependencies]
secret-service = "^2.0.1"
gdk-pixbuf = "^0.15.6"
libadwaita = "^0.1.0-beta-1"
gdk-pixbuf = "^0.17.0"
libadwaita = "^0.3.0"
ref_filter_map = "^1.0.1"
regex = "^1.5.5"
async-std = "^1.10.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ With meson:
meson target -Dbuildtype=debug -Doffline=false --prefix="$HOME/.local"
ninja install -C target
# to run test/linter/etc
meson test -C target
meson test -C target --verbose
```

This will install a `.desktop` file among other things, and the spot executable will be put in `.local/bin` (you might want to add it to your path).
Expand Down
3 changes: 1 addition & 2 deletions build-aux/clippy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ fi
cargo clippy --manifest-path "$SRC"/Cargo.toml -- -D warnings \
-A clippy::module_inception \
-A clippy::new_without_default \
-A clippy::enum-variant-names \
-A clippy::await_holding_refcell_ref # not sure how to solve this one yet
-A clippy::enum-variant-names
Loading

0 comments on commit d1b7e61

Please sign in to comment.