diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-01-07 11:56:16 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:57:30 +0200 |
commit | 1c7abe2e454f14647025afa0e990fe1f17bbd462 (patch) | |
tree | 9cfa80382bd613ba31a0ee0ae81bca1f2c4daff9 /gnu | |
parent | c95c57f56d7b110677a868a4bec9c1380b980c3a (diff) | |
download | guix-1c7abe2e454f14647025afa0e990fe1f17bbd462.tar.gz |
gnu: rust-snap-1: Update to 1.1.1.
* gnu/packages/crates-io.scm (rust-snap-1): Update to 1.1.1. Change-Id: Ic20ed6ab726bcac4571f880ec0dbd11df198eeb0
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index f88b6d9de5..ef8c072a55 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -67321,24 +67321,20 @@ package provides derive macros.") (define-public rust-snap-1 (package (name "rust-snap") - (version "1.0.5") + (version "1.1.1") (source (origin (method url-fetch) (uri (crate-uri "snap" version)) - (file-name - (string-append name "-" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 - "0l8llidvm7dlwfw2ql6hk4b4byl9677fppwgl7i2wglqs6a60ia5")))) + (base32 "0fxw80m831l76a5zxcwmz2aq7mcwc1pp345pnljl4cv1kbxnfsqv")))) (build-system cargo-build-system) (arguments `(#:cargo-development-inputs (("rust-doc-comment" ,rust-doc-comment-0.3)))) - (home-page - "https://github.com/BurntSushi/rust-snappy") - (synopsis - "Pure Rust implementation of the Snappy compression algorithm") + (home-page "https://github.com/BurntSushi/rust-snappy") + (synopsis "Pure Rust implementation of the Snappy compression algorithm") (description "This package provides a pure Rust implementation of the Snappy compression algorithm. Includes streaming compression and decompression.") |