gnu: Add rust-rusqlite-0.29.
* gnu/packages/crates-io.scm (rust-rusqlite-0.29): New variable. (rust-rusqlite-0.26): Inherit from rust-rusqlite-0.29.
parent
019282b54e
commit
d33f8ecc6a
|
@ -52484,8 +52484,49 @@ please consider using @code{async-std} or @code{tokio}.")
|
|||
(description "This package provides traits to implement custom Runtimes.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-rusqlite-0.29
|
||||
(package
|
||||
(name "rust-rusqlite")
|
||||
(version "0.29.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "rusqlite" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1wj12rmwa8g0bfhsk307fl84k0xcw8ji872xx3k447apdl1rv6sl"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-bitflags" ,rust-bitflags-2)
|
||||
("rust-chrono" ,rust-chrono-0.4)
|
||||
("rust-csv" ,rust-csv-1)
|
||||
("rust-fallible-iterator" ,rust-fallible-iterator-0.2)
|
||||
("rust-fallible-streaming-iterator" ,rust-fallible-streaming-iterator-0.1)
|
||||
("rust-hashlink" ,rust-hashlink-0.8)
|
||||
("rust-libsqlite3-sys" ,rust-libsqlite3-sys-0.26)
|
||||
("rust-serde-json" ,rust-serde-json-1)
|
||||
("rust-smallvec" ,rust-smallvec-1)
|
||||
("rust-time" ,rust-time-0.3)
|
||||
("rust-url" ,rust-url-2)
|
||||
("rust-uuid" ,rust-uuid-1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-bencher" ,rust-bencher-0.1)
|
||||
("rust-doc-comment" ,rust-doc-comment-0.3)
|
||||
("rust-lazy-static" ,rust-lazy-static-1)
|
||||
("rust-regex" ,rust-regex-1)
|
||||
("rust-tempfile" ,rust-tempfile-3)
|
||||
("rust-unicase" ,rust-unicase-2)
|
||||
("rust-uuid" ,rust-uuid-1))))
|
||||
(inputs (list sqlite))
|
||||
(home-page "https://github.com/rusqlite/rusqlite")
|
||||
(synopsis "Wrapper for SQLite")
|
||||
(description "This crate provides a wrapper for SQLite.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-rusqlite-0.26
|
||||
(package
|
||||
(inherit rust-rusqlite-0.29)
|
||||
(name "rust-rusqlite")
|
||||
(version "0.26.1")
|
||||
(source
|
||||
|
@ -52495,7 +52536,6 @@ please consider using @code{async-std} or @code{tokio}.")
|
|||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "19sh4nnw1i7a6wacqllz20qpqpdj96jsg3dzaq61cwmd3ywv10la"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
|
@ -52514,11 +52554,7 @@ please consider using @code{async-std} or @code{tokio}.")
|
|||
("rust-smallvec" ,rust-smallvec-1)
|
||||
("rust-time" ,rust-time-0.3)
|
||||
("rust-url" ,rust-url-2)
|
||||
("rust-uuid" ,rust-uuid-0.8))))
|
||||
(home-page "https://github.com/rusqlite/rusqlite")
|
||||
(synopsis "Wrapper for SQLite")
|
||||
(description "This crate provides a wrapper for SQLite.")
|
||||
(license license:expat)))
|
||||
("rust-uuid" ,rust-uuid-0.8))))))
|
||||
|
||||
(define-public rust-rust-htslib-0.38
|
||||
(package
|
||||
|
|
Reference in New Issue