packages feed

jsonrpc-tinyclient-1.1.0.0: jsonrpc-tinyclient.cabal

cabal-version: 1.12
name:          jsonrpc-tinyclient
version:       1.1.0.0
license:       Apache-2.0
license-file:  LICENSE
copyright:     (c) Aleksandr Krupenkin 2016-2026
maintainer:    mail@akru.me
author:        Aleksandr Krupenkin
homepage:      https://github.com/airalab/hs-web3#readme
bug-reports:   https://github.com/airalab/hs-web3/issues
synopsis:      Tiny JSON-RPC client for Haskell Web3 library.
description:   Minimalistic JSON-RPC client, inspired by haxr library.
category:      Network
build-type:    Simple

source-repository head
    type:     git
    location: https://github.com/airalab/hs-web3

library
    exposed-modules:  Network.JsonRpc.TinyClient
    hs-source-dirs:   src
    other-modules:    Paths_jsonrpc_tinyclient
    default-language: Haskell2010
    ghc-options:
        -funbox-strict-fields -Wduplicate-exports -Widentities
        -Woverlapping-patterns -Wpartial-type-signatures
        -Wunrecognised-pragmas -Wtyped-holes -Wincomplete-patterns
        -Wincomplete-uni-patterns -Wmissing-fields -Wmissing-methods
        -Wmissing-exported-signatures -Wmissing-signatures -Wname-shadowing
        -Wunused-binds -Wunused-top-binds -Wunused-local-binds
        -Wunused-pattern-binds -Wunused-imports -Wunused-matches
        -Wunused-foralls -Wtabs

    build-depends:
        aeson >=1.2 && <2.3,
        base >=4.11 && <4.21,
        bytestring >=0.10 && <0.13,
        exceptions >=0.8 && <0.11,
        http-client >=0.5 && <0.8,
        http-client-tls >=0.3 && <0.4,
        mtl >=2.2 && <2.4,
        random >=1.0 && <1.3,
        text >=1.2 && <2.2,
        websockets >=0.10 && <0.14