diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-12-20 13:29:23 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-01-03 22:06:37 +0100 |
commit | b08673dc8704d0a939e52a9dfd831034335e7d51 (patch) | |
tree | c0799131c72cc60c2156f31060a9422cd6bf7bd0 | |
parent | 2cfceef6460a2017306773805cc2f94d7e3b63a8 (diff) |
gnu: rust-once-cell: Improve description.
* gnu/packages/crates-io.scm (rust-once-cell-1)[descripiton]: Expand
description.
-rw-r--r-- | gnu/packages/crates-io.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index ddca596c9d..328fde1c0f 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -19995,7 +19995,10 @@ other crates to create safe wrappers around Oniguruma.") (home-page "https://github.com/matklad/once_cell") (synopsis "Single assignment cells and lazy values") (description - "Single assignment cells and lazy values.") + "This package provides two new cell-like types, @code{unsync::OnceCell} +and @code{sync::OnceCell}. OnceCell might store arbitrary non-copy types, can +be assigned to at most once and provide direct access to the stored +contents.") (license (list license:expat license:asl2.0)))) (define-public rust-once-cell-0.1 |