diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:05 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:05 -0500 |
commit | 32349d1f0a820e2b9227cf65bd9206b7b855a48f (patch) | |
tree | f868de58749eeb987235709408c16ddacb255834 /unlustig.scm | |
parent | 3dfa581e9df1a498534282f2b6b6c5096d3a7bb0 (diff) | |
download | guix-techchud-32349d1f0a820e2b9227cf65bd9206b7b855a48f.tar.gz guix-techchud-32349d1f0a820e2b9227cf65bd9206b7b855a48f.tar.bz2 guix-techchud-32349d1f0a820e2b9227cf65bd9206b7b855a48f.zip |
add rust-criterion-plot@0.4
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index fd258a2..e41a6ff 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1264,3 +1264,26 @@ binding to JVM APIs from Rust.") "This package provides Statistics-driven micro-benchmarking library.") (license (list license:asl2.0 license:expat)))) +(define-public rust-criterion-plot-0.4 + (package + (name "rust-criterion-plot") + (version "0.4.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "criterion-plot" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0xhq0jz1603585h7xvm3s4x9irmifjliklszbzs4cda00y1cqwr6")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-cast" ,rust-cast-0.3) + ("rust-itertools" ,rust-itertools-0.10)) + #:cargo-development-inputs (("rust-itertools-num" ,rust-itertools-num-0.1) + ("rust-num-complex" ,rust-num-complex-0.4) + ("rust-rand" ,rust-rand-0.8)))) + (home-page "https://github.com/bheisler/criterion.rs") + (synopsis "Criterion's plotting library") + (description "This package provides Criterion's plotting library.") + (license (list license:expat license:asl2.0)))) + |