diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-06-22 10:09:31 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-06-22 14:15:31 +0300 |
commit | 5247f79db6ac80bce4762c5662de6e4fd3ac8f5f (patch) | |
tree | 084c6fb57c88b9447d20a578f738f34ee374be99 /gnu/packages | |
parent | 7c6948c71e162cf3a68a83ada2c4cf71d1f8f19e (diff) |
gnu: Add rust-section-testing-0.0.
* gnu/packages/crates-io.scm (rust-section-testing-0.0): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/crates-io.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 424786deb5..b57bb407ca 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -20210,6 +20210,26 @@ Pwrite traits from the scroll crate.") proven statistical guarantees.") (license license:expat))) +(define-public rust-section-testing-0.0 + (package + (name "rust-section-testing") + (version "0.0.4") + (source + (origin + (method url-fetch) + (uri (crate-uri "section-testing" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0a1zwpcs2dqhky2wd8y82cm25l3s9i5dbyn4ypgmvdysizcxgr7c")))) + (build-system cargo-build-system) + (home-page "https://github.com/evanw/section_testing") + (synopsis "Library for section-style testing") + (description + "This package provides a library for section-style testing.") + (license license:expat))) + (define-public rust-security-framework-0.3 (package (name "rust-security-framework") |