me
/
guix
Archived
1
0
Fork 0

gnu: rust-ucd-trie-0.1: Update to 0.1.5.

* gnu/packages/crates-io.scm (rust-ucd-trie-0.1): Update to 0.1.5.
[cargo-inputs]: Remove rust-lazy-static-1. Add rust-once-cell-1.
master
Efraim Flashner 2023-03-09 16:41:59 +02:00 committed by Maxim Cournoyer
parent f11c6f66bf
commit ac69826981
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 3 additions and 4 deletions

View File

@ -64838,19 +64838,18 @@ Unicode character database.")
(define-public rust-ucd-trie-0.1
(package
(name "rust-ucd-trie")
(version "0.1.2")
(version "0.1.5")
(source
(origin
(method url-fetch)
(uri (crate-uri "ucd-trie" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1hh6kyzh5xygwy96wfmsf8v8czlzhps2lgbcyhj1xzy1w1xys04g"))))
(base32 "10ggllapxq99cxxy179wbklmabj5fikm02233v4idf7djvcw8ycy"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-development-inputs
(("rust-lazy-static" ,rust-lazy-static-1))))
(("rust-once-cell" ,rust-once-cell-1))))
(home-page "https://github.com/BurntSushi/ucd-generate")
(synopsis "Trie for storing Unicode codepoint sets and maps")
(description