* [bug#64248] [PATCH 1/8] gnu: rust-strum: Update to 0.24.1.
2023-06-23 10:52 [bug#64248] Series to update to rust-rspotify-0.11 Steve George
@ 2023-06-23 16:56 ` Steve George
2023-06-23 16:56 ` [bug#64248] [PATCH 2/8] gnu: Add rust-enum-derive Steve George
` (7 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: Steve George @ 2023-06-23 16:56 UTC (permalink / raw)
To: 64248; +Cc: Steve George, efraim
* gnu/packages/crates-io.scm (rust-strum): Update to 0.24.1
---
gnu/packages/crates-io.scm | 47 ++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 3c2c11c5cd..dea4b4d353 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -62574,6 +62574,28 @@ (define-public rust-structopt-derive-0.2
"Parse command line argument by defining a struct, derive crate.")
(license (list license:asl2.0 license:expat))))
+(define-public rust-strum-0.24
+ (package
+ (name "rust-strum")
+ (version "0.24.1")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "strum" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0gz6cjhlps5idwasznklxdh2zsas6mxf99vr0n27j876q12n0gh6"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:skip-build? #f
+ #:tests? #f
+ #:cargo-inputs (("rust-phf" ,rust-phf-0.10)
+ ("rust-strum-macros" ,rust-strum-macros-0.24))))
+ (home-page "https://github.com/Peternator7/strum")
+ (synopsis "Helpful macros for working with enums and strings")
+ (description "Helpful macros for working with enums and strings")
+ (license license:expat)))
+
(define-public rust-strum-0.21
(package
(name "rust-strum")
@@ -62648,6 +62670,31 @@ (define-public rust-strum-0.18
`(#:cargo-inputs
(("rust-strum-macros" ,rust-strum-macros-0.18))))))
+(define-public rust-strum-macros-0.24
+ (package
+ (name "rust-strum-macros")
+ (version "0.24.3")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "strum_macros" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0naxz2y38kwq5wgirmia64vvf6qhwy8j367rw966n62gsbh5nf0y"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:skip-build? #f
+ #:cargo-inputs (("rust-heck" ,rust-heck-0.4)
+ ("rust-proc-macro2" ,rust-proc-macro2-1)
+ ("rust-quote" ,rust-quote-1)
+ ("rust-rustversion" ,rust-rustversion-1)
+ ("rust-syn" ,rust-syn-1)
+ ("rust-strum" ,rust-strum-0.24))))
+ (home-page "https://github.com/Peternator7/strum")
+ (synopsis "Helpful macros for working with enums and strings")
+ (description "Helpful macros for working with enums and strings")
+ (license license:expat)))
+
(define-public rust-strum-macros-0.21
(package
(name "rust-strum-macros")
base-commit: 323169d4256a1c3932d1d5e411c157ba062a22c9
--
2.40.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [bug#64248] [PATCH 2/8] gnu: Add rust-enum-derive.
2023-06-23 10:52 [bug#64248] Series to update to rust-rspotify-0.11 Steve George
2023-06-23 16:56 ` [bug#64248] [PATCH 1/8] gnu: rust-strum: Update to 0.24.1 Steve George
@ 2023-06-23 16:56 ` Steve George
2023-06-23 16:56 ` [bug#64248] [PATCH 3/8] gnu: Add rust-enum-dispatch Steve George
` (6 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: Steve George @ 2023-06-23 16:56 UTC (permalink / raw)
To: 64248; +Cc: Steve George, efraim
* gnu/packages/crates-io.scm (rust-enum-derive): New variable.
---
gnu/packages/crates-io.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index dea4b4d353..44f51c8c11 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -21466,6 +21466,27 @@ (define-public rust-enum-as-inner-0.2
("rust-quote" ,rust-quote-0.6)
("rust-syn" ,rust-syn-0.15))))))
+(define-public rust-enum-derive-0.1
+ (package
+ (name "rust-enum-derive")
+ (version "0.1.7")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "enum-derive" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "05n8mdca3y2c8pvl1isncj52fa80wplvx28lxvwqmpzfr6lc4sj0"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-development-inputs (("rust-custom-derive" ,rust-custom-derive-0.1))))
+ (home-page "https://github.com/DanielKeep/rust-custom-derive")
+ (synopsis
+ "This crate provides macros for deriving additional functionality for enums.")
+ (description
+ "This crate provides macros for deriving additional functionality for enums.")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-enum-map-derive-0.4
(package
(name "rust-enum-map-derive")
--
2.40.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [bug#64248] [PATCH 3/8] gnu: Add rust-enum-dispatch
2023-06-23 10:52 [bug#64248] Series to update to rust-rspotify-0.11 Steve George
2023-06-23 16:56 ` [bug#64248] [PATCH 1/8] gnu: rust-strum: Update to 0.24.1 Steve George
2023-06-23 16:56 ` [bug#64248] [PATCH 2/8] gnu: Add rust-enum-derive Steve George
@ 2023-06-23 16:56 ` Steve George
2023-06-23 16:56 ` [bug#64248] [PATCH 4/8] gnu: Add rust-rspotify-model Steve George
` (5 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: Steve George @ 2023-06-23 16:56 UTC (permalink / raw)
To: 64248; +Cc: Steve George, efraim
* gnu/packages/crates-io.scm (rust-enum-dispatch): New variable.
---
gnu/packages/crates-io.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 44f51c8c11..b6ed862306 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -21487,6 +21487,37 @@ (define-public rust-enum-derive-0.1
"This crate provides macros for deriving additional functionality for enums.")
(license (list license:expat license:asl2.0))))
+(define-public rust-enum-dispatch-0.3
+ (package
+ (name "rust-enum-dispatch")
+ (version "0.3.11")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "enum_dispatch" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1qlxlxjvy92s0fwcwlnd2cdkkyml1755xap2lq8v4812hsanxwqi"))))
+ (build-system cargo-build-system)
+ (arguments
+ (list #:skip-build? #t
+ #:cargo-inputs `(("rust-once-cell" ,rust-once-cell-1)
+ ("rust-proc-macro2" ,rust-proc-macro2-1)
+ ("rust-quote" ,rust-quote-1)
+ ("rust-syn" ,rust-syn-1))
+ #:cargo-development-inputs `(("rust-custom-derive" ,rust-custom-derive-0.1)
+ ("rust-enum-derive" ,rust-enum-derive-0.1)
+ ("rust-rand" ,rust-rand-0.6)
+ ("rust-serde" ,rust-serde-1) ;requires 1.0.136
+ ("rust-serde-json" ,rust-serde-json-1)
+ ("rust-smol" ,rust-smol-1))))
+ (home-page "https://gitlab.com/antonok/enum_dispatch")
+ (synopsis "Faster alternative to dynamically dispatched method calls")
+ (description
+ "This crate transforms your trait objects into concrete compound types,
+increasing their method call speed up to 10x.")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-enum-map-derive-0.4
(package
(name "rust-enum-map-derive")
--
2.40.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [bug#64248] [PATCH 4/8] gnu: Add rust-rspotify-model.
2023-06-23 10:52 [bug#64248] Series to update to rust-rspotify-0.11 Steve George
` (2 preceding siblings ...)
2023-06-23 16:56 ` [bug#64248] [PATCH 3/8] gnu: Add rust-enum-dispatch Steve George
@ 2023-06-23 16:56 ` Steve George
2023-06-23 16:56 ` [bug#64248] [PATCH 5/8] gnu: Add rust-rspotify-macros Steve George
` (4 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: Steve George @ 2023-06-23 16:56 UTC (permalink / raw)
To: 64248; +Cc: Steve George, efraim
* gnu/packages/crates-io.scm (rust-rspotify-model): New variable.
---
gnu/packages/crates-io.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index b6ed862306..16b7afea78 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -52890,6 +52890,32 @@ (define-public rust-rspec-1
rust.")
(license license:mpl2.0)))
+(define-public rust-rspotify-model-0.11
+ (package
+ (name "rust-rspotify-model")
+ (version "0.11.7")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "rspotify-model" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1j0fy5n3f0gwq2qnn4qss0sx5kvbghfr8149jb0bp8azzvlg3gbg"))))
+ (build-system cargo-build-system)
+ (arguments
+ (list #:skip-build? #f
+ #:cargo-inputs `(("rust-chrono" ,rust-chrono-0.4)
+ ("rust-enum-dispatch" ,rust-enum-dispatch-0.3)
+ ("rust-serde" ,rust-serde-1)
+ ("rust-serde-json" ,rust-serde-json-1)
+ ("rust-strum" ,rust-strum-0.24)
+ ("rust-thiserror" ,rust-thiserror-1))))
+ (home-page "https://github.com/ramsayleung/rspotify")
+ (synopsis "API endpoint response model object for RSpotify")
+ (description "RSpotify is a wrapper for the Spotify Web API. This crate
+contains the API endpoint response objects.")
+ (license license:expat)))
+
(define-public rust-rstar-0.9
(package
(name "rust-rstar")
--
2.40.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [bug#64248] [PATCH 5/8] gnu: Add rust-rspotify-macros.
2023-06-23 10:52 [bug#64248] Series to update to rust-rspotify-0.11 Steve George
` (3 preceding siblings ...)
2023-06-23 16:56 ` [bug#64248] [PATCH 4/8] gnu: Add rust-rspotify-model Steve George
@ 2023-06-23 16:56 ` Steve George
2023-06-23 16:56 ` [bug#64248] [PATCH 6/8] gnu: Add rust-maybe-async Steve George
` (3 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: Steve George @ 2023-06-23 16:56 UTC (permalink / raw)
To: 64248; +Cc: Steve George, efraim
* gnu/packages/crates-io.scm (rust-rspotify-macros): New variable.
---
gnu/packages/crates-io.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 16b7afea78..5bf615fb95 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -52890,6 +52890,27 @@ (define-public rust-rspec-1
rust.")
(license license:mpl2.0)))
+(define-public rust-rspotify-macros-0.11
+ (package
+ (name "rust-rspotify-macros")
+ (version "0.11.7")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "rspotify-macros" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "00zjxnbhljak54bf5q1h09487bh7sza3mqsxk21x43q7pw5jlrkg"))))
+ (build-system cargo-build-system)
+ (arguments
+ (list #:skip-build? #f
+ #:cargo-development-inputs `(("rust-serde-json" ,rust-serde-json-1))))
+ (home-page "https://github.com/ramsayleung/rspotify")
+ (synopsis "Macros for RSpotify")
+ (description "RSpotify is a wrapper for the Spotify Web API. This crate
+contains Macros for RSpotify.")
+ (license license:expat)))
+
(define-public rust-rspotify-model-0.11
(package
(name "rust-rspotify-model")
--
2.40.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [bug#64248] [PATCH 6/8] gnu: Add rust-maybe-async.
2023-06-23 10:52 [bug#64248] Series to update to rust-rspotify-0.11 Steve George
` (4 preceding siblings ...)
2023-06-23 16:56 ` [bug#64248] [PATCH 5/8] gnu: Add rust-rspotify-macros Steve George
@ 2023-06-23 16:56 ` Steve George
2023-06-23 16:56 ` [bug#64248] [PATCH 7/8] gnu: Add rust-rspotify-http Steve George
` (2 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: Steve George @ 2023-06-23 16:56 UTC (permalink / raw)
To: 64248; +Cc: Steve George, efraim
* gnu/packages/crates-io.scm (rust-maybe-async): New variable.
---
gnu/packages/crates-io.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 5bf615fb95..41646c69c6 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -36214,6 +36214,34 @@ (define-public rust-matrixmultiply-0.1
`(#:cargo-inputs (("rust-rawpointer" ,rust-rawpointer-0.1))
#:cargo-development-inputs (("rust-bencher" ,rust-bencher-0.1))))))
+(define-public rust-maybe-async-0.2
+ (package
+ (name "rust-maybe-async")
+ (version "0.2.7")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "maybe-async" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "01gksgxmzgl8hvg831vv993fvrwz8hjwgcln99ilp08zrc9qq6qg"))))
+ (build-system cargo-build-system)
+ (arguments
+ (list #:skip-build? #f
+ #:cargo-inputs `(("rust-proc-macro2" ,rust-proc-macro2-1)
+ ("rust-quote" ,rust-quote-1)
+ ("rust-syn" ,rust-syn-1)
+ ("rust-async-std" ,rust-async-std-1)
+ ("rust-async-trait" ,rust-async-trait-0.1)
+ ("rust-tokio" ,rust-tokio-1)
+ ("rust-trybuild" ,rust-trybuild-1))))
+ (home-page "https://github.com/fMeow/maybe-async-rs")
+ (synopsis "Procedural macro to unify sync and async Rust code")
+ (description
+ "This package provides a procedural macro that unifies sync and
+async code in Rust.")
+ (license license:expat)))
+
(define-public rust-maybe-rayon-0.1
(package
(name "rust-maybe-rayon")
--
2.40.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [bug#64248] [PATCH 7/8] gnu: Add rust-rspotify-http.
2023-06-23 10:52 [bug#64248] Series to update to rust-rspotify-0.11 Steve George
` (5 preceding siblings ...)
2023-06-23 16:56 ` [bug#64248] [PATCH 6/8] gnu: Add rust-maybe-async Steve George
@ 2023-06-23 16:56 ` Steve George
2023-06-23 16:56 ` [bug#64248] [PATCH 8/8] gnu: rust-rspotify: Update to 0.11.7 Steve George
2023-10-02 8:42 ` bug#64248: Series to update to rust-rspotify-0.11 Efraim Flashner
8 siblings, 0 replies; 10+ messages in thread
From: Steve George @ 2023-06-23 16:56 UTC (permalink / raw)
To: 64248; +Cc: Steve George, efraim
* gnu/packages/crates-io.scm (rust-rspotify-http): New variable.
---
gnu/packages/crates-io.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 41646c69c6..7ce924a70b 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -52918,6 +52918,36 @@ (define-public rust-rspec-1
rust.")
(license license:mpl2.0)))
+(define-public rust-rspotify-http-0.11
+ (package
+ (name "rust-rspotify-http")
+ (version "0.11.7")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "rspotify-http" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1a1xdvnlksb0gbkyrw9q4l7fyy8ba0mfsjs71qv2r6bbpadij0d8"))))
+ (build-system cargo-build-system)
+ (arguments
+ (list #:skip-build? #f
+ #:cargo-inputs `(("rust-async-trait" ,rust-async-trait-0.1)
+ ("rust-log" ,rust-log-0.4)
+ ("rust-maybe-async" ,rust-maybe-async-0.2)
+ ("rust-reqwest" ,rust-reqwest-0.11)
+ ("rust-serde-json" ,rust-serde-json-1)
+ ("rust-thiserror" ,rust-thiserror-1)
+ ("rust-ureq" ,rust-ureq-2))
+ #:cargo-development-inputs `(("rust-rspotify-model" ,rust-rspotify-model-0.11)
+ ("rust-tokio" ,rust-tokio-1))))
+ (native-inputs (list pkg-config openssl))
+ (home-page "https://github.com/ramsayleung/rspotify")
+ (synopsis "HTTP compatibility layer for RSpotify")
+ (description "RSpotify is a wrapper for the Spotify Web API. This
+package contains a HTTP compatibility layer for RSpotify.")
+ (license license:expat)))
+
(define-public rust-rspotify-macros-0.11
(package
(name "rust-rspotify-macros")
--
2.40.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [bug#64248] [PATCH 8/8] gnu: rust-rspotify: Update to 0.11.7.
2023-06-23 10:52 [bug#64248] Series to update to rust-rspotify-0.11 Steve George
` (6 preceding siblings ...)
2023-06-23 16:56 ` [bug#64248] [PATCH 7/8] gnu: Add rust-rspotify-http Steve George
@ 2023-06-23 16:56 ` Steve George
2023-10-02 8:42 ` bug#64248: Series to update to rust-rspotify-0.11 Efraim Flashner
8 siblings, 0 replies; 10+ messages in thread
From: Steve George @ 2023-06-23 16:56 UTC (permalink / raw)
To: 64248; +Cc: Steve George, efraim
* gnu/packages/crates-io.scm (rust-rspotify): Update to 0.11.7
---
gnu/packages/crates-io.scm | 114 ++++++++++++++++++++++++-------------
1 file changed, 75 insertions(+), 39 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 7ce924a70b..3a264005e6 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -52918,6 +52918,81 @@ (define-public rust-rspec-1
rust.")
(license license:mpl2.0)))
+(define-public rust-rspotify-0.11
+ (package
+ (name "rust-rspotify")
+ (version "0.11.7")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "rspotify" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0jxpdiic1550h13j8gaqk1g3xlv3b7p7dzyjrf6xx6j8hzh74kjw"))))
+ (build-system cargo-build-system)
+ (arguments
+ (list #:tests? #f
+ #:cargo-inputs `(("rust-async-stream" ,rust-async-stream-0.3)
+ ("rust-async-trait" ,rust-async-trait-0.1)
+ ("rust-base64" ,rust-base64-0.20)
+ ("rust-chrono" ,rust-chrono-0.4)
+ ("rust-dotenv" ,rust-dotenv-0.15)
+ ("rust-futures" ,rust-futures-0.3)
+ ("rust-getrandom" ,rust-getrandom-0.2)
+ ("rust-log" ,rust-log-0.4)
+ ("rust-maybe-async" ,rust-maybe-async-0.2)
+ ("rust-rspotify-http" ,rust-rspotify-http-0.11)
+ ("rust-rspotify-macros" ,rust-rspotify-macros-0.11)
+ ("rust-rspotify-model" ,rust-rspotify-model-0.11)
+ ("rust-serde" ,rust-serde-1)
+ ("rust-serde-json" ,rust-serde-json-1)
+ ("rust-sha2" ,rust-sha2-0.10)
+ ("rust-thiserror" ,rust-thiserror-1)
+ ("rust-url" ,rust-url-2)
+ ("rust-webbrowser" ,rust-webbrowser-0.8))
+ #:cargo-development-inputs `(("rust-env-logger" ,rust-env-logger-0.10)
+ ("rust-futures-util" ,rust-futures-util-0.3)
+ ("rust-tokio" ,rust-tokio-1))))
+ (native-inputs (list pkg-config openssl))
+ (home-page "https://github.com/ramsayleung/rspotify")
+ (synopsis "Spotify API wrapper")
+ (description "This package provides a wrapper API for the Spotify
+streaming service.")
+ (license license:expat)))
+
+(define-public rust-rspotify-0.10
+ (package
+ (inherit rust-rspotify-0.11)
+ (name "rust-rspotify")
+ (version "0.10.0")
+ (source (origin
+ (method url-fetch)
+ (uri (crate-uri "rspotify" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "196wd157l3fn6hlyixgffhl2x516g4fpa3s91arhcikiifsppzgf"))))
+ (arguments
+ (list #:skip-build? #t
+ #:cargo-inputs `(("rust-base64" ,rust-base64-0.10)
+ ("rust-chrono" ,rust-chrono-0.4)
+ ("rust-derive-builder" ,rust-derive-builder-0.7)
+ ("rust-dotenv" ,rust-dotenv-0.13)
+ ("rust-env-logger" ,rust-env-logger-0.6)
+ ("rust-failure" ,rust-failure-0.1)
+ ("rust-itertools" ,rust-itertools-0.8)
+ ("rust-lazy-static" ,rust-lazy-static-1)
+ ("rust-log" ,rust-log-0.4)
+ ("rust-percent-encoding" ,rust-percent-encoding-1)
+ ("rust-rand" ,rust-rand-0.6)
+ ("rust-random" ,rust-random-0.12)
+ ("rust-reqwest" ,rust-reqwest-0.10)
+ ("rust-serde" ,rust-serde-1)
+ ("rust-serde-derive" ,rust-serde-derive-1)
+ ("rust-serde-json" ,rust-serde-json-1)
+ ("rust-url" ,rust-url-1)
+ ("rust-webbrowser" ,rust-webbrowser-0.5))))))
+
(define-public rust-rspotify-http-0.11
(package
(name "rust-rspotify-http")
@@ -61280,45 +61355,6 @@ (define-public rust-sprs-0.10
("rust-bincode" ,rust-bincode-1)
("rust-tobj" ,rust-tobj-2))))))
-(define-public rust-rspotify-0.10
- (package
- (name "rust-rspotify")
- (version "0.10.0")
- (source
- (origin
- (method url-fetch)
- (uri (crate-uri "rspotify" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32 "196wd157l3fn6hlyixgffhl2x516g4fpa3s91arhcikiifsppzgf"))))
- (build-system cargo-build-system)
- (arguments
- `(#:skip-build? #t
- #:cargo-inputs
- (("rust-base64" ,rust-base64-0.10)
- ("rust-chrono" ,rust-chrono-0.4)
- ("rust-derive-builder" ,rust-derive-builder-0.7)
- ("rust-dotenv" ,rust-dotenv-0.13)
- ("rust-env-logger" ,rust-env-logger-0.6)
- ("rust-failure" ,rust-failure-0.1)
- ("rust-itertools" ,rust-itertools-0.8)
- ("rust-lazy-static" ,rust-lazy-static-1)
- ("rust-log" ,rust-log-0.4)
- ("rust-percent-encoding" ,rust-percent-encoding-1)
- ("rust-rand" ,rust-rand-0.6)
- ("rust-random" ,rust-random-0.12)
- ("rust-reqwest" ,rust-reqwest-0.10)
- ("rust-serde" ,rust-serde-1)
- ("rust-serde-derive" ,rust-serde-derive-1)
- ("rust-serde-json" ,rust-serde-json-1)
- ("rust-url" ,rust-url-1)
- ("rust-webbrowser" ,rust-webbrowser-0.5))))
- (home-page "https://github.com/ramsayleung/rspotify")
- (synopsis "Spotify API wrapper")
- (description "This package provides wrapper API forSpotify streaming
-service.")
- (license license:expat)))
-
(define-public rust-spsc-buffer-0.1
(package
(name "rust-spsc-buffer")
--
2.40.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* bug#64248: Series to update to rust-rspotify-0.11
2023-06-23 10:52 [bug#64248] Series to update to rust-rspotify-0.11 Steve George
` (7 preceding siblings ...)
2023-06-23 16:56 ` [bug#64248] [PATCH 8/8] gnu: rust-rspotify: Update to 0.11.7 Steve George
@ 2023-10-02 8:42 ` Efraim Flashner
8 siblings, 0 replies; 10+ messages in thread
From: Efraim Flashner @ 2023-10-02 8:42 UTC (permalink / raw)
To: Steve George; +Cc: 64248-done
[-- Attachment #1: Type: text/plain, Size: 238 bytes --]
Thanks! Patches pushed.
--
Efraim Flashner <efraim@flashner.co.il> רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread