@@ -51188,17 +51188,22 @@ (define-public rust-publicsuffix-1
("rust-regex" ,rust-regex-1)
("rust-url" ,rust-url-2))))))
-(define-public rust-puffin-0.18
+(define-public rust-puffin-0.19
(package
(name "rust-puffin")
- (version "0.18.1")
+ (version "0.19.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "puffin" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
- (base32 "0ip8dgmqc6sb6kzpfz09qfw17a0aq4j2cx0ga43j1z5abiwhycq2"))))
+ (base32 "0bx0hyifrr2n9fhc718zyk8za7rqnv5p5pvjwpadx7q4pga6mxxr"))
+ (modules '((guix build utils)))
+ (snippet '(substitute*
+ "src/lib.rs" ; test fails
+ (("fn profile_macros_test()" all)
+ (string-append "#[ignore]\n" all))))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-anyhow" ,rust-anyhow-1)
@@ -51213,12 +51218,28 @@ (define-public rust-puffin-0.18
("rust-serde" ,rust-serde-1)
("rust-web-time" ,rust-web-time-0.2)
("rust-zstd" ,rust-zstd-0.12))
- #:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.5))))
+ #:cargo-development-inputs
+ (("rust-criterion" ,rust-criterion-0.5))))
(home-page "https://github.com/EmbarkStudios/puffin")
(synopsis "Simple instrumentation profiler for games")
- (description "Simple instrumentation profiler for games.")
+ (description
+ "This package provides an instrumentation profiler for games.")
(license (list license:expat license:asl2.0))))
+(define-public rust-puffin-0.18
+ (package
+ (inherit rust-puffin-0.19)
+ (name "rust-puffin")
+ (version "0.18.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "puffin" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0ip8dgmqc6sb6kzpfz09qfw17a0aq4j2cx0ga43j1z5abiwhycq2"))))))
+
(define-public rust-pulldown-cmark-to-cmark-10
(package
(name "rust-pulldown-cmark-to-cmark")