me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-debugid-0.8.

* gnu/packages/crates-io.scm (rust-debugid-0.8): New variable.
Efraim Flashner 2023-10-03 10:23:52 +03:00
parent 41a41b6504
commit 019165eeae
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 24 additions and 0 deletions

View File

@ -19127,6 +19127,30 @@ debugger and run commands while verifying the output.")
verifying the contents.")
(license (list license:expat license:asl2.0))))
(define-public rust-debugid-0.8
(package
(name "rust-debugid")
(version "0.8.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "debugid" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "13f15dfvn07fa7087pmacixqqv0lmj4hv93biw4ldr48ypk55xdy"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-serde" ,rust-serde-1)
("rust-uuid" ,rust-uuid-1))
#:cargo-development-inputs
(("rust-serde-json" ,rust-serde-json-1))))
(home-page "https://sentry.io/")
(synopsis "Common reusable types for implementing the sentry.io protocol")
(description
"Common reusable types for implementing the sentry.io protocol.")
(license license:asl2.0)))
(define-public rust-decimal-2
(package
(name "rust-decimal")