mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
Remove garbage toml-e files from last publish
This commit is contained in:
parent
d8d9ec7335
commit
e73a08d43a
9 changed files with 0 additions and 407 deletions
100
Cargo.toml-e
100
Cargo.toml-e
|
@ -1,100 +0,0 @@
|
||||||
[package]
|
|
||||||
name = "librespot"
|
|
||||||
version = "0.5.0"
|
|
||||||
rust-version = "1.74"
|
|
||||||
authors = ["Librespot Org"]
|
|
||||||
license = "MIT"
|
|
||||||
description = "An open source client library for Spotify, with support for Spotify Connect"
|
|
||||||
keywords = ["spotify"]
|
|
||||||
repository = "https://github.com/librespot-org/librespot"
|
|
||||||
readme = "README.md"
|
|
||||||
edition = "2021"
|
|
||||||
|
|
||||||
[workspace]
|
|
||||||
|
|
||||||
[lib]
|
|
||||||
name = "librespot"
|
|
||||||
path = "src/lib.rs"
|
|
||||||
|
|
||||||
[[bin]]
|
|
||||||
name = "librespot"
|
|
||||||
path = "src/main.rs"
|
|
||||||
doc = false
|
|
||||||
|
|
||||||
[dependencies.librespot-audio]
|
|
||||||
path = "audio"
|
|
||||||
version = "0.5.0"
|
|
||||||
|
|
||||||
[dependencies.librespot-connect]
|
|
||||||
path = "connect"
|
|
||||||
version = "0.5.0"
|
|
||||||
|
|
||||||
[dependencies.librespot-core]
|
|
||||||
path = "core"
|
|
||||||
version = "0.5.0"
|
|
||||||
|
|
||||||
[dependencies.librespot-discovery]
|
|
||||||
path = "discovery"
|
|
||||||
version = "0.5.0"
|
|
||||||
|
|
||||||
[dependencies.librespot-metadata]
|
|
||||||
path = "metadata"
|
|
||||||
version = "0.5.0"
|
|
||||||
|
|
||||||
[dependencies.librespot-playback]
|
|
||||||
path = "playback"
|
|
||||||
version = "0.5.0"
|
|
||||||
|
|
||||||
[dependencies.librespot-protocol]
|
|
||||||
path = "protocol"
|
|
||||||
version = "0.5.0"
|
|
||||||
|
|
||||||
[dependencies.librespot-oauth]
|
|
||||||
path = "oauth"
|
|
||||||
version = "0.5.0"
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
data-encoding = "2.5"
|
|
||||||
env_logger = { version = "0.11.2", default-features = false, features = ["color", "humantime", "auto-color"] }
|
|
||||||
futures-util = { version = "0.3", default-features = false }
|
|
||||||
getopts = "0.2"
|
|
||||||
log = "0.4"
|
|
||||||
sha1 = "0.10"
|
|
||||||
sysinfo = { version = "0.31.3", default-features = false, features = ["system"] }
|
|
||||||
thiserror = "1.0"
|
|
||||||
tokio = { version = "1", features = ["rt", "macros", "signal", "sync", "parking_lot", "process"] }
|
|
||||||
url = "2.2"
|
|
||||||
|
|
||||||
[features]
|
|
||||||
alsa-backend = ["librespot-playback/alsa-backend"]
|
|
||||||
portaudio-backend = ["librespot-playback/portaudio-backend"]
|
|
||||||
pulseaudio-backend = ["librespot-playback/pulseaudio-backend"]
|
|
||||||
jackaudio-backend = ["librespot-playback/jackaudio-backend"]
|
|
||||||
rodio-backend = ["librespot-playback/rodio-backend"]
|
|
||||||
rodiojack-backend = ["librespot-playback/rodiojack-backend"]
|
|
||||||
sdl-backend = ["librespot-playback/sdl-backend"]
|
|
||||||
gstreamer-backend = ["librespot-playback/gstreamer-backend"]
|
|
||||||
|
|
||||||
with-dns-sd = ["librespot-core/with-dns-sd", "librespot-discovery/with-dns-sd"]
|
|
||||||
|
|
||||||
passthrough-decoder = ["librespot-playback/passthrough-decoder"]
|
|
||||||
|
|
||||||
default = ["rodio-backend"]
|
|
||||||
|
|
||||||
[package.metadata.deb]
|
|
||||||
maintainer = "librespot-org"
|
|
||||||
copyright = "2018 Paul Liétar"
|
|
||||||
license-file = ["LICENSE", "4"]
|
|
||||||
depends = "$auto"
|
|
||||||
extended-description = """\
|
|
||||||
librespot is an open source client library for Spotify. It enables applications \
|
|
||||||
to use Spotify's service, without using the official but closed-source \
|
|
||||||
libspotify. Additionally, it will provide extra features which are not \
|
|
||||||
available in the official library."""
|
|
||||||
section = "sound"
|
|
||||||
priority = "optional"
|
|
||||||
assets = [
|
|
||||||
["target/release/librespot", "usr/bin/", "755"],
|
|
||||||
["contrib/librespot.service", "lib/systemd/system/", "644"],
|
|
||||||
["contrib/librespot.user.service", "lib/systemd/user/", "644"]
|
|
||||||
]
|
|
|
@ -1,27 +0,0 @@
|
||||||
[package]
|
|
||||||
name = "librespot-audio"
|
|
||||||
version = "0.5.0"
|
|
||||||
rust-version = "1.74"
|
|
||||||
authors = ["Paul Lietar <paul@lietar.net>"]
|
|
||||||
description = "The audio fetching logic for librespot"
|
|
||||||
license = "MIT"
|
|
||||||
repository = "https://github.com/librespot-org/librespot"
|
|
||||||
edition = "2021"
|
|
||||||
|
|
||||||
[dependencies.librespot-core]
|
|
||||||
path = "../core"
|
|
||||||
version = "0.5.0"
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
aes = "0.8"
|
|
||||||
bytes = "1"
|
|
||||||
ctr = "0.9"
|
|
||||||
futures-util = "0.3"
|
|
||||||
hyper = { version = "1.3", features = [] }
|
|
||||||
hyper-util = { version = "0.1", features = ["client"] }
|
|
||||||
http-body-util = "0.1.1"
|
|
||||||
log = "0.4"
|
|
||||||
parking_lot = { version = "0.12", features = ["deadlock_detection"] }
|
|
||||||
tempfile = "3"
|
|
||||||
thiserror = "1.0"
|
|
||||||
tokio = { version = "1", features = ["macros", "parking_lot", "sync"] }
|
|
|
@ -1,33 +0,0 @@
|
||||||
[package]
|
|
||||||
name = "librespot-connect"
|
|
||||||
version = "0.5.0"
|
|
||||||
rust-version = "1.74"
|
|
||||||
authors = ["Paul Lietar <paul@lietar.net>"]
|
|
||||||
description = "The discovery and Spotify Connect logic for librespot"
|
|
||||||
license = "MIT"
|
|
||||||
repository = "https://github.com/librespot-org/librespot"
|
|
||||||
edition = "2021"
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
form_urlencoded = "1.0"
|
|
||||||
futures-util = "0.3"
|
|
||||||
log = "0.4"
|
|
||||||
protobuf = "3.5"
|
|
||||||
rand = "0.8"
|
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
|
||||||
serde_json = "1.0"
|
|
||||||
thiserror = "1.0"
|
|
||||||
tokio = { version = "1", features = ["macros", "parking_lot", "sync"] }
|
|
||||||
tokio-stream = "0.1"
|
|
||||||
|
|
||||||
[dependencies.librespot-core]
|
|
||||||
path = "../core"
|
|
||||||
version = "0.5.0"
|
|
||||||
|
|
||||||
[dependencies.librespot-playback]
|
|
||||||
path = "../playback"
|
|
||||||
version = "0.5.0"
|
|
||||||
|
|
||||||
[dependencies.librespot-protocol]
|
|
||||||
path = "../protocol"
|
|
||||||
version = "0.5.0"
|
|
|
@ -1,76 +0,0 @@
|
||||||
[package]
|
|
||||||
name = "librespot-core"
|
|
||||||
version = "0.5.0"
|
|
||||||
rust-version = "1.74"
|
|
||||||
authors = ["Paul Lietar <paul@lietar.net>"]
|
|
||||||
build = "build.rs"
|
|
||||||
description = "The core functionality provided by librespot"
|
|
||||||
license = "MIT"
|
|
||||||
repository = "https://github.com/librespot-org/librespot"
|
|
||||||
edition = "2021"
|
|
||||||
|
|
||||||
[dependencies.librespot-oauth]
|
|
||||||
path = "../oauth"
|
|
||||||
version = "0.5.0"
|
|
||||||
|
|
||||||
[dependencies.librespot-protocol]
|
|
||||||
path = "../protocol"
|
|
||||||
version = "0.5.0"
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
aes = "0.8"
|
|
||||||
base64 = "0.22"
|
|
||||||
byteorder = "1.4"
|
|
||||||
bytes = "1"
|
|
||||||
dns-sd = { version = "0.1", optional = true }
|
|
||||||
form_urlencoded = "1.0"
|
|
||||||
futures-core = "0.3"
|
|
||||||
futures-util = { version = "0.3", features = ["alloc", "bilock", "sink", "unstable"] }
|
|
||||||
governor = { version = "0.6", default-features = false, features = ["std", "jitter"] }
|
|
||||||
hmac = "0.12"
|
|
||||||
httparse = "1.7"
|
|
||||||
http = "1.0"
|
|
||||||
hyper = { version = "1.3", features = ["http1", "http2"] }
|
|
||||||
hyper-util = { version = "0.1", features = ["client"] }
|
|
||||||
http-body-util = "0.1.1"
|
|
||||||
hyper-proxy2 = { version = "0.1", default-features = false, features = ["rustls"] }
|
|
||||||
hyper-rustls = { version = "0.27.2", features = ["http2"] }
|
|
||||||
log = "0.4"
|
|
||||||
nonzero_ext = "0.3"
|
|
||||||
num-bigint = { version = "0.4", features = ["rand"] }
|
|
||||||
num-derive = "0.4"
|
|
||||||
num-integer = "0.1"
|
|
||||||
num-traits = "0.2"
|
|
||||||
once_cell = "1"
|
|
||||||
parking_lot = { version = "0.12", features = ["deadlock_detection"] }
|
|
||||||
pbkdf2 = { version = "0.12", default-features = false, features = ["hmac"] }
|
|
||||||
pin-project-lite = "0.2"
|
|
||||||
priority-queue = "2.0"
|
|
||||||
protobuf = "3.5"
|
|
||||||
quick-xml = { version = "0.36.1", features = ["serialize"] }
|
|
||||||
rand = "0.8"
|
|
||||||
rsa = "0.9.2"
|
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
|
||||||
serde_json = "1.0"
|
|
||||||
sha1 = { version = "0.10", features = ["oid"] }
|
|
||||||
shannon = "0.2"
|
|
||||||
sysinfo = { version = "0.31.3", default-features = false, features = ["system"] }
|
|
||||||
thiserror = "1.0"
|
|
||||||
time = { version = "0.3", features = ["formatting", "parsing"] }
|
|
||||||
tokio = { version = "1", features = ["io-util", "macros", "net", "parking_lot", "rt", "sync", "time"] }
|
|
||||||
tokio-stream = "0.1"
|
|
||||||
tokio-tungstenite = { version = "0.24", default-features = false, features = ["rustls-tls-native-roots"] }
|
|
||||||
tokio-util = { version = "0.7", features = ["codec"] }
|
|
||||||
url = "2"
|
|
||||||
uuid = { version = "1", default-features = false, features = ["fast-rng", "v4"] }
|
|
||||||
data-encoding = "2.5"
|
|
||||||
|
|
||||||
[build-dependencies]
|
|
||||||
rand = "0.8"
|
|
||||||
vergen-gitcl = { version = "1.0.0", default-features = false, features = ["build"] }
|
|
||||||
|
|
||||||
[dev-dependencies]
|
|
||||||
tokio = { version = "1", features = ["macros", "parking_lot"] }
|
|
||||||
|
|
||||||
[features]
|
|
||||||
with-dns-sd = ["dns-sd"]
|
|
|
@ -1,42 +0,0 @@
|
||||||
[package]
|
|
||||||
name = "librespot-discovery"
|
|
||||||
version = "0.5.0"
|
|
||||||
rust-version = "1.74"
|
|
||||||
authors = ["Paul Lietar <paul@lietar.net>"]
|
|
||||||
description = "The discovery logic for librespot"
|
|
||||||
license = "MIT"
|
|
||||||
repository = "https://github.com/librespot-org/librespot"
|
|
||||||
edition = "2021"
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
aes = "0.8"
|
|
||||||
base64 = "0.22"
|
|
||||||
bytes = "1"
|
|
||||||
ctr = "0.9"
|
|
||||||
dns-sd = { version = "0.1.3", optional = true }
|
|
||||||
form_urlencoded = "1.0"
|
|
||||||
futures-core = "0.3"
|
|
||||||
futures-util = "0.3"
|
|
||||||
hmac = "0.12"
|
|
||||||
hyper = { version = "1.3", features = ["http1"] }
|
|
||||||
hyper-util = { version = "0.1", features = ["server-auto", "server-graceful", "service"] }
|
|
||||||
http-body-util = "0.1.1"
|
|
||||||
libmdns = "0.9"
|
|
||||||
log = "0.4"
|
|
||||||
rand = "0.8"
|
|
||||||
serde_json = "1.0"
|
|
||||||
sha1 = "0.10"
|
|
||||||
thiserror = "1.0"
|
|
||||||
tokio = { version = "1", features = ["parking_lot", "sync", "rt"] }
|
|
||||||
|
|
||||||
[dependencies.librespot-core]
|
|
||||||
path = "../core"
|
|
||||||
version = "0.5.0"
|
|
||||||
|
|
||||||
[dev-dependencies]
|
|
||||||
futures = "0.3"
|
|
||||||
hex = "0.4"
|
|
||||||
tokio = { version = "1", features = ["macros", "parking_lot", "rt"] }
|
|
||||||
|
|
||||||
[features]
|
|
||||||
with-dns-sd = ["dns-sd", "librespot-core/with-dns-sd"]
|
|
|
@ -1,27 +0,0 @@
|
||||||
[package]
|
|
||||||
name = "librespot-metadata"
|
|
||||||
version = "0.5.0"
|
|
||||||
rust-version = "1.74"
|
|
||||||
authors = ["Paul Lietar <paul@lietar.net>"]
|
|
||||||
description = "The metadata logic for librespot"
|
|
||||||
license = "MIT"
|
|
||||||
repository = "https://github.com/librespot-org/librespot"
|
|
||||||
edition = "2021"
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
async-trait = "0.1"
|
|
||||||
bytes = "1"
|
|
||||||
log = "0.4"
|
|
||||||
protobuf = "3.5"
|
|
||||||
thiserror = "1"
|
|
||||||
uuid = { version = "1", default-features = false }
|
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
|
||||||
serde_json = "1.0"
|
|
||||||
|
|
||||||
[dependencies.librespot-core]
|
|
||||||
path = "../core"
|
|
||||||
version = "0.5.0"
|
|
||||||
|
|
||||||
[dependencies.librespot-protocol]
|
|
||||||
path = "../protocol"
|
|
||||||
version = "0.5.0"
|
|
|
@ -1,18 +0,0 @@
|
||||||
[package]
|
|
||||||
name = "librespot-oauth"
|
|
||||||
version = "0.5.0"
|
|
||||||
rust-version = "1.73"
|
|
||||||
authors = ["Nick Steel <nick@nsteel.co.uk>"]
|
|
||||||
description = "OAuth authorization code flow with PKCE for obtaining a Spotify access token"
|
|
||||||
license = "MIT"
|
|
||||||
repository = "https://github.com/librespot-org/librespot"
|
|
||||||
edition = "2021"
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
log = "0.4"
|
|
||||||
oauth2 = "4.4"
|
|
||||||
thiserror = "1.0"
|
|
||||||
url = "2.2"
|
|
||||||
|
|
||||||
[dev-dependencies]
|
|
||||||
env_logger = { version = "0.11.2", default-features = false, features = ["color", "humantime", "auto-color"] }
|
|
|
@ -1,68 +0,0 @@
|
||||||
[package]
|
|
||||||
name = "librespot-playback"
|
|
||||||
version = "0.5.0"
|
|
||||||
rust-version = "1.74"
|
|
||||||
authors = ["Sasha Hilton <sashahilton00@gmail.com>"]
|
|
||||||
description = "The audio playback logic for librespot"
|
|
||||||
license = "MIT"
|
|
||||||
repository = "https://github.com/librespot-org/librespot"
|
|
||||||
edition = "2021"
|
|
||||||
|
|
||||||
[dependencies.librespot-audio]
|
|
||||||
path = "../audio"
|
|
||||||
version = "0.5.0"
|
|
||||||
|
|
||||||
[dependencies.librespot-core]
|
|
||||||
path = "../core"
|
|
||||||
version = "0.5.0"
|
|
||||||
|
|
||||||
[dependencies.librespot-metadata]
|
|
||||||
path = "../metadata"
|
|
||||||
version = "0.5.0"
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
futures-util = "0.3"
|
|
||||||
log = "0.4"
|
|
||||||
parking_lot = { version = "0.12", features = ["deadlock_detection"] }
|
|
||||||
shell-words = "1.1"
|
|
||||||
thiserror = "1"
|
|
||||||
tokio = { version = "1", features = ["parking_lot", "rt", "rt-multi-thread", "sync"] }
|
|
||||||
zerocopy = { version = "0.7.32", features = ["derive"] }
|
|
||||||
|
|
||||||
# Backends
|
|
||||||
alsa = { version = "0.9.0", optional = true }
|
|
||||||
portaudio-rs = { version = "0.3", optional = true }
|
|
||||||
libpulse-binding = { version = "2", optional = true, default-features = false }
|
|
||||||
libpulse-simple-binding = { version = "2", optional = true, default-features = false }
|
|
||||||
jack = { version = "0.11", optional = true } # jack >0.11 requires a MSRV of 1.80
|
|
||||||
sdl2 = { version = "0.37", optional = true }
|
|
||||||
gstreamer = { version = "0.23.1", optional = true }
|
|
||||||
gstreamer-app = { version = "0.23.0", optional = true }
|
|
||||||
gstreamer-audio = { version = "0.23.0", optional = true }
|
|
||||||
glib = { version = "0.20.3", optional = true }
|
|
||||||
|
|
||||||
# Rodio dependencies
|
|
||||||
rodio = { version = "0.19.0", optional = true, default-features = false }
|
|
||||||
cpal = { version = "0.15.1", optional = true }
|
|
||||||
|
|
||||||
# Container and audio decoder
|
|
||||||
symphonia = { version = "0.5", default-features = false, features = ["mp3", "ogg", "vorbis"] }
|
|
||||||
|
|
||||||
# Legacy Ogg container decoder for the passthrough decoder
|
|
||||||
ogg = { version = "0.9", optional = true }
|
|
||||||
|
|
||||||
# Dithering
|
|
||||||
rand = { version = "0.8", features = ["small_rng"] }
|
|
||||||
rand_distr = "0.4"
|
|
||||||
|
|
||||||
[features]
|
|
||||||
alsa-backend = ["alsa"]
|
|
||||||
portaudio-backend = ["portaudio-rs"]
|
|
||||||
pulseaudio-backend = ["libpulse-binding", "libpulse-simple-binding"]
|
|
||||||
jackaudio-backend = ["jack"]
|
|
||||||
rodio-backend = ["rodio", "cpal"]
|
|
||||||
rodiojack-backend = ["rodio", "cpal/jack"]
|
|
||||||
sdl-backend = ["sdl2"]
|
|
||||||
gstreamer-backend = ["gstreamer", "gstreamer-app", "gstreamer-audio"]
|
|
||||||
|
|
||||||
passthrough-decoder = ["ogg"]
|
|
|
@ -1,16 +0,0 @@
|
||||||
[package]
|
|
||||||
name = "librespot-protocol"
|
|
||||||
version = "0.5.0"
|
|
||||||
rust-version = "1.74"
|
|
||||||
authors = ["Paul Liétar <paul@lietar.net>"]
|
|
||||||
build = "build.rs"
|
|
||||||
description = "The protobuf logic for communicating with Spotify servers"
|
|
||||||
license = "MIT"
|
|
||||||
repository = "https://github.com/librespot-org/librespot"
|
|
||||||
edition = "2021"
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
protobuf = "3.5"
|
|
||||||
|
|
||||||
[build-dependencies]
|
|
||||||
protobuf-codegen = "3"
|
|
Loading…
Reference in a new issue