diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-04-02 12:17:33 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:46:51 +0300 |
commit | 0b88149c74cd5da7776e13b223b25ae90ed364d2 (patch) | |
tree | 68bd7f25fc04a1edddcfa18ea6299cf71d93064e /gnu | |
parent | c18e51b92749ef1d1f9230cf07013e991b303363 (diff) | |
download | guix-0b88149c74cd5da7776e13b223b25ae90ed364d2.tar guix-0b88149c74cd5da7776e13b223b25ae90ed364d2.tar.gz |
gnu: rust-phf-0.9: Downgrade to 0.9.0.
Later versions of this crate are yanked by upstream.
* gnu/packages/crates-io.scm (rust-phf-0.9): Downgrade to 0.9.0.
Change-Id: I7e1dd762b9a31ac3ceb941982a45bff793d66bd1
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index ec04ea27ea..fc3bd126d6 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -52328,16 +52328,16 @@ function data structures.") (package (inherit rust-phf-0.10) (name "rust-phf") - (version "0.9.1") + (version "0.9.0") (source (origin (method url-fetch) (uri (crate-uri "phf" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0sk9arhiv4hkg3hbmbxnpjvr0bffhyz7kpb2pn86mn6ia4c566xj")))) + "0dsgl8gqaia5lwg9sjlg4ccihn5dija2drg0gi2sjz1samkqpb5j")))) (arguments - `(#:tests? #f ; Doc tests fail. + `(#:tests? #f ; unresolved imports `phf::phf_map`, `phf::phf_set` #:cargo-inputs (("rust-phf-macros" ,rust-phf-macros-0.9) ("rust-phf-shared" ,rust-phf-shared-0.9) |