me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-ptr-meta-0.1.

* gnu/packages/crates-io.scm (rust-ptr-meta-0.1): New variable.
master
Ricardo Wurmus 2021-11-09 14:48:44 +00:00
parent 574647b855
commit 11fb842ae9
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 31 additions and 0 deletions

View File

@ -60976,6 +60976,37 @@ formatters with per-field documentation generated for each structure.
(description "This package provides macros for the ptr_meta API.") (description "This package provides macros for the ptr_meta API.")
(license license:expat))) (license license:expat)))
(define-public rust-ptr-meta-0.1
(package
(name "rust-ptr-meta")
(version "0.1.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "ptr_meta" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1wd4wy0wxrcays4f1gy8gwcmxg7mskmivcv40p0hidh6xbvwqf07"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-ptr-meta-derive" ,rust-ptr-meta-derive-0.1))))
(home-page "https://github.com/djkoloski/ptr_meta")
(synopsis "Manipulate metadata of fat pointers")
(description "This package allows manipulating the metadata of fat
pointers:
@itemize
@item Naming the metadatas type (as an associated type)
@item Extracting metadata from a pointer
@item Reconstructing a pointer from a data pointer and metadata
@item Representing vtables, the metadata for trait objects, as a type with
some limited API.
@end itemize
")
(license license:expat)))
(define-public rust-ptree-0.3 (define-public rust-ptree-0.3
(package (package
(name "rust-ptree") (name "rust-ptree")