mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-07 03:20:04 +01:00
gnu: Add rust-cookie-store-0.20.
* gnu/packages/crates-io.scm (rust-cookie-store-0.20): New variable. (rust-cookie-store-0.19): Inherit from rust-cookie-store-0.20. Change-Id: Ia731a9b295e6926d60252ccce26b667b1f98b1fe
This commit is contained in:
parent
6973ee4f42
commit
85db3daf07
1 changed files with 30 additions and 6 deletions
|
@ -16573,21 +16573,20 @@ in @code{no_std}. Alloc support is optional.")
|
||||||
(base32 "1wzzy5iazdk5caadxvjfwrd312rbg7a55a1zpmsdrhk3kfpa77r3"))))
|
(base32 "1wzzy5iazdk5caadxvjfwrd312rbg7a55a1zpmsdrhk3kfpa77r3"))))
|
||||||
(arguments `(#:cargo-inputs (("rust-memchr" ,rust-memchr-2))))))
|
(arguments `(#:cargo-inputs (("rust-memchr" ,rust-memchr-2))))))
|
||||||
|
|
||||||
(define-public rust-cookie-store-0.19
|
(define-public rust-cookie-store-0.20
|
||||||
(package
|
(package
|
||||||
(name "rust-cookie-store")
|
(name "rust-cookie-store")
|
||||||
(version "0.19.1")
|
(version "0.20.0")
|
||||||
(source (origin
|
(source
|
||||||
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "cookie_store" version))
|
(uri (crate-uri "cookie_store" version))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "1xkc7fl1jik9ki13j9pjgyw51d0qd613srz1lv1qb0blpjmn2x1q"))))
|
||||||
"19vy19rvp3a68sgxkrv6bxxlrr2ggqp0176yqb3zhmi0g4sqz8fm"))))
|
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs (("rust-cookie" ,rust-cookie-0.17)
|
||||||
(("rust-cookie" ,rust-cookie-0.16)
|
|
||||||
("rust-idna" ,rust-idna-0.3)
|
("rust-idna" ,rust-idna-0.3)
|
||||||
("rust-indexmap" ,rust-indexmap-1)
|
("rust-indexmap" ,rust-indexmap-1)
|
||||||
("rust-log" ,rust-log-0.4)
|
("rust-log" ,rust-log-0.4)
|
||||||
|
@ -16602,6 +16601,31 @@ in @code{no_std}. Alloc support is optional.")
|
||||||
(description "This package implements cookie storage and retrieval.")
|
(description "This package implements cookie storage and retrieval.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-cookie-store-0.19
|
||||||
|
(package
|
||||||
|
(inherit rust-cookie-store-0.20)
|
||||||
|
(name "rust-cookie-store")
|
||||||
|
(version "0.19.1")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "cookie_store" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"19vy19rvp3a68sgxkrv6bxxlrr2ggqp0176yqb3zhmi0g4sqz8fm"))))
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-cookie" ,rust-cookie-0.16)
|
||||||
|
("rust-idna" ,rust-idna-0.3)
|
||||||
|
("rust-indexmap" ,rust-indexmap-1)
|
||||||
|
("rust-log" ,rust-log-0.4)
|
||||||
|
("rust-publicsuffix" ,rust-publicsuffix-2)
|
||||||
|
("rust-serde" ,rust-serde-1)
|
||||||
|
("rust-serde-derive" ,rust-serde-derive-1)
|
||||||
|
("rust-serde-json" ,rust-serde-json-1)
|
||||||
|
("rust-time" ,rust-time-0.3)
|
||||||
|
("rust-url" ,rust-url-2))))))
|
||||||
|
|
||||||
(define-public rust-cookie-store-0.16
|
(define-public rust-cookie-store-0.16
|
||||||
(package
|
(package
|
||||||
(inherit rust-cookie-store-0.19)
|
(inherit rust-cookie-store-0.19)
|
||||||
|
|
Loading…
Add table
Reference in a new issue