1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
cabal-version: >=1.10
name: half
version: 0.3.3
license: BSD3
license-file: LICENSE
copyright: Copyright (C) 2014 Edward A. Kmett
maintainer: Edward A. Kmett <ekmett@gmail.com>
author: Edward A. Kmett
stability: provisional
homepage: http://github.com/ekmett/half
bug-reports: http://github.com/ekmett/half/issues
synopsis: Half-precision floating-point
description:
Half-precision floating-point.
category: Numeric
build-type: Simple
extra-source-files:
.gitignore
README.markdown
CHANGELOG.markdown
tested-with: GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.4.4
, GHC == 8.6.5
, GHC == 8.8.4
, GHC == 8.10.7
, GHC == 9.0.2
, GHC == 9.2.8
, GHC == 9.4.8
, GHC == 9.6.6
, GHC == 9.8.4
, GHC == 9.10.1
, GHC == 9.12.1
source-repository head
type: git
location: https://github.com/ekmett/half.git
library
default-language: Haskell2010
exposed-modules:
Numeric.Half
Numeric.Half.Internal
hs-source-dirs: src
other-extensions: BangPatterns CPP DeriveDataTypeable DeriveGeneric
DeriveLift ForeignFunctionInterface PatternSynonyms
StandaloneDeriving
ghc-options: -Wall -Wtabs -O2 -Wno-missing-pattern-synonym-signatures
build-depends:
base >=4.9 && <5,
binary >=0.5.1.0 && <0.9,
deepseq >=1.4.2.0 && <1.6,
template-haskell >=2.11
if !impl(ghcjs)
c-sources:
cbits/half.c
test-suite spec
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
ghc-options: -Wall
build-depends:
base,
binary,
bytestring,
half,
QuickCheck >=2.14.1 && <2.17,
tasty >= 1.4 && < 1.6,
tasty-quickcheck >= 0.10 && < 0.12
|