me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-jsonpath-lib-0.3.

* gnu/packages/crates-io.scm (rust-jsonpath-lib-0.3): New variable.
Nicolas Goaziou 2021-08-26 10:59:35 +02:00
parent 82637c1aef
commit eb9ae642d4
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 25 additions and 0 deletions

View File

@ -23254,6 +23254,31 @@ the jni-bindgen code generator for binding to JVM APIs from Rust.")
@code{std::thread}, which makes sure that by default all threads are joined.")
(license (list license:expat license:asl2.0))))
(define-public rust-jsonpath-lib-0.3
(package
(name "rust-jsonpath-lib")
(version "0.3.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "jsonpath_lib" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0kvp4fargixqlwjvpb3w6f1lvmiysnmj7an5h75wqc42ss8k39pa"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-log" ,rust-log-0.4)
("rust-serde" ,rust-serde-1)
("rust-serde-json" ,rust-serde-json-1))))
(home-page "https://github.com/freestrings/jsonpath")
(synopsis "JsonPath engine written in Rust")
(description
"It is JsonPath engine written in Rust. It provides a similar API
interface in Webassembly and Javascript too.")
(license license:expat)))
(define-public rust-jsonrpc-core-14
(package
(name "rust-jsonrpc-core")