1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 03:20:43 +02:00

gnu: Add rust-graphql-client-0.14.

* gnu/packages/crates-io.scm (rust-graphql-client-0.14): New variable.

Change-Id: Ia6af601d5edba54c9016c8b8ac1128620cb2dbb9
This commit is contained in:
Efraim Flashner 2024-12-31 20:44:49 +02:00
parent 0a56875af9
commit e71e861358
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -30171,6 +30171,31 @@ and loading crate.")
("rust-plain" ,rust-plain-0.2)
("rust-scroll" ,rust-scroll-0.11))))))
(define-public rust-graphql-client-0.14
(package
(name "rust-graphql-client")
(version "0.14.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "graphql_client" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0jqlq5adcq6pidn5sq51nk5wn4sc3nvxrhjmkn802zsbyg3zs355"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-test-flags '("--"
"--skip=GraphQLQuery (line 43)")
#:cargo-inputs (("rust-graphql-query-derive" ,rust-graphql-query-derive-0.14)
("rust-reqwest" ,rust-reqwest-0.11)
("rust-serde" ,rust-serde-1)
("rust-serde-json" ,rust-serde-json-1))))
(home-page "https://github.com/graphql-rust/graphql-client")
(synopsis "Typed GraphQL requests and responses")
(description
"This package provides typed @code{GraphQL} requests and responses.")
(license (list license:asl2.0 license:expat))))
(define-public rust-graphql-client-codegen-0.14
(package
(name "rust-graphql-client-codegen")