Bumps the cargo group with 6 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.16` | `4.5.17` | | [serde](https://github.com/serde-rs/serde) | `1.0.209` | `1.0.210` | | [serde_json](https://github.com/serde-rs/json) | `1.0.127` | `1.0.128` | | [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.11` | `0.7.12` | | [tokio-stream](https://github.com/tokio-rs/tokio) | `0.1.15` | `0.1.16` | | [clap_complete](https://github.com/clap-rs/clap) | `4.5.24` | `4.5.26` | Updates `clap` from 4.5.16 to 4.5.17 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.16...clap_complete-v4.5.17) Updates `serde` from 1.0.209 to 1.0.210 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.209...v1.0.210) Updates `serde_json` from 1.0.127 to 1.0.128 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/1.0.127...1.0.128) Updates `tokio-util` from 0.7.11 to 0.7.12 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-util-0.7.11...tokio-util-0.7.12) Updates `tokio-stream` from 0.1.15 to 0.1.16 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-stream-0.1.15...tokio-stream-0.1.16) Updates `clap_complete` from 4.5.24 to 4.5.26 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.24...clap_complete-v4.5.26) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: tokio-util dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: tokio-stream dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: clap_complete dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo ... Signed-off-by: dependabot[bot] <support@github.com>
120 lines
3.5 KiB
TOML
120 lines
3.5 KiB
TOML
[package]
|
|
authors = ["Henrik Friedrichsen <henrik@affekt.org>"]
|
|
description = "ncurses Spotify client written in Rust using librespot, inspired by ncmpc and the likes."
|
|
edition = "2021"
|
|
exclude = ["images/**"]
|
|
keywords = ["spotify", "ncurses", "librespot", "terminal"]
|
|
license = "BSD-2-Clause"
|
|
name = "ncspot"
|
|
readme = "README.md"
|
|
repository = "https://github.com/hrkfdn/ncspot"
|
|
version = "1.1.2"
|
|
|
|
[badges]
|
|
maintenance = {status = "actively-developed"}
|
|
|
|
[workspace]
|
|
members = [
|
|
".",
|
|
"xtask"
|
|
]
|
|
|
|
[workspace.lints.clippy]
|
|
enum_glob_use = "warn"
|
|
use_self = "deny"
|
|
multiple_inherent_impl = "deny"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
|
|
[profile.optimized]
|
|
inherits = "release"
|
|
lto = false
|
|
codegen-units = 16
|
|
|
|
[dependencies]
|
|
chrono = "0.4"
|
|
clap = "4.5.17"
|
|
arboard = {version = "3.4", optional = true}
|
|
crossbeam-channel = "0.5"
|
|
zbus = {version = "4.4.0", default-features = false, features = ["tokio"], optional = true}
|
|
fern = "0.6"
|
|
futures = "0.3"
|
|
ioctl-rs = {version = "0.2", optional = true}
|
|
libc = "0.2.158"
|
|
librespot-core = "0.4.2"
|
|
librespot-playback = "0.4.2"
|
|
librespot-protocol = "0.4.2"
|
|
log = "0.4.22"
|
|
pancurses = {version = "0.17.0", optional = true}
|
|
parse_duration = "2.1.1"
|
|
platform-dirs = "0.3.0"
|
|
rand = "0.8"
|
|
regex = "1"
|
|
reqwest = {version = "0.12", features = ["blocking", "json"]}
|
|
serde = "1.0"
|
|
serde_cbor = "0.11.2"
|
|
serde_json = "1.0"
|
|
strum = "0.26"
|
|
strum_macros = "0.26"
|
|
tokio = {version = "1", features = ["rt-multi-thread", "sync", "time", "net"]}
|
|
tokio-util = {version = "0.7.12", features = ["codec"]}
|
|
tokio-stream = {version = "0.1.16", features = ["sync"]}
|
|
toml = "0.8"
|
|
unicode-width = "0.1.13"
|
|
url = "2.5"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
signal-hook = "0.3.0"
|
|
|
|
[dependencies.rspotify]
|
|
default-features = false
|
|
features = ["client-ureq", "ureq-native-tls"]
|
|
version = "0.13.3"
|
|
|
|
[dependencies.cursive]
|
|
default-features = false
|
|
version = "0.21.1"
|
|
|
|
[dependencies.notify-rust]
|
|
default-features = false
|
|
version = "4"
|
|
# Use zbus, which we already depend on, instead of dbus.
|
|
features = ["z"]
|
|
optional = true
|
|
|
|
[features]
|
|
alsa_backend = ["librespot-playback/alsa-backend"]
|
|
cover = ["ioctl-rs"] # Support displaying the album cover
|
|
default = ["share_clipboard", "pulseaudio_backend", "mpris", "notify", "crossterm_backend"]
|
|
mpris = ["zbus"] # Allow ncspot to be controlled via MPRIS API
|
|
ncurses_backend = ["cursive/ncurses-backend"]
|
|
notify = ["notify-rust"] # Show what's playing via a notification
|
|
crossterm_backend = ["cursive/crossterm-backend"]
|
|
pancurses_backend = ["cursive/pancurses-backend", "pancurses/win32"]
|
|
portaudio_backend = ["librespot-playback/portaudio-backend"]
|
|
pulseaudio_backend = ["librespot-playback/pulseaudio-backend"]
|
|
rodio_backend = ["librespot-playback/rodio-backend"]
|
|
share_clipboard = ["arboard", "arboard/wayland-data-control"] # Share a link to the system clipboard
|
|
share_selection = ["arboard", "arboard/wayland-data-control"] # Use the primary selection for sharing - linux and bsd only
|
|
termion_backend = ["cursive/termion-backend"]
|
|
|
|
[package.metadata.deb]
|
|
assets = [
|
|
["target/release/ncspot", "usr/bin/", "755"],
|
|
["misc/ncspot.desktop", "usr/share/applications/", "644"],
|
|
["images/logo.svg", "usr/share/icons/hicolor/scalable/apps/ncspot.svg", "644"],
|
|
["README.md", "usr/share/doc/ncspot/README.md", "644"],
|
|
]
|
|
depends = "$auto"
|
|
extended-description = """\
|
|
ncurses Spotify client written in Rust using librespot. \
|
|
It is heavily inspired by ncurses MPD clients, such as ncmpc."""
|
|
license-file = ["LICENSE"]
|
|
priority = "optional"
|
|
section = "sound"
|