packages feed

oblivious-transfer-0.1.0: oblivious-transfer.cabal

-- This file has been generated from package.yaml by hpack version 0.28.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 0274e8d72c54fc39e8449ddd6257b2d6346b35128509a08618044668a67cb578

name:           oblivious-transfer
version:        0.1.0
synopsis:       An implementation of the Oblivious Transfer protocol in Haskell
description:    Please see the README on GitHub at <https://github.com/githubuser/oblivious-transfer#readme>
category:       Cryptography
homepage:       https://github.com/adjoint-io/oblivious-transfer#readme
bug-reports:    https://github.com/adjoint-io/oblivious-transfer/issues
maintainer:     Adjoint Inc (info@adjoint.io)
license:        Apache
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10
extra-source-files:
    ChangeLog.md
    README.md

source-repository head
  type: git
  location: https://github.com/adjoint-io/oblivious-transfer

library
  exposed-modules:
      OT
  other-modules:
      Paths_oblivious_transfer
  hs-source-dirs:
      src
  default-extensions: LambdaCase RecordWildCards OverloadedStrings NoImplicitPrelude FlexibleInstances
  ghc-options: -fwarn-tabs -fwarn-incomplete-patterns -fwarn-incomplete-record-updates -fwarn-redundant-constraints -fwarn-implicit-prelude -fwarn-overflowed-literals -fwarn-orphans -fwarn-identities -fwarn-dodgy-exports -fwarn-dodgy-imports -fwarn-duplicate-exports -fwarn-overlapping-patterns -fwarn-missing-fields -fwarn-missing-methods -fwarn-missing-signatures -fwarn-noncanonical-monad-instances -fwarn-unused-pattern-binds -fwarn-unused-type-patterns -fwarn-unrecognised-pragmas -fwarn-wrong-do-bind -fno-warn-name-shadowing -fno-warn-unused-binds -fno-warn-unused-matches -fno-warn-unused-do-bind
  build-depends:
      base >=4.7 && <5
    , bytestring
    , cryptonite
    , memory
    , protolude >=0.2
    , random
  default-language: Haskell2010

test-suite oblivious-transfer-test
  type: exitcode-stdio-1.0
  main-is: Driver.hs
  other-modules:
      TestOT
      Paths_oblivious_transfer
  hs-source-dirs:
      test
  default-extensions: LambdaCase RecordWildCards OverloadedStrings NoImplicitPrelude FlexibleInstances
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      QuickCheck
    , base >=4.7 && <5
    , bytestring
    , cryptonite
    , memory
    , oblivious-transfer
    , protolude >=0.2
    , random
    , tasty
    , tasty-discover
    , tasty-hunit
    , tasty-quickcheck
  default-language: Haskell2010