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
|
name: data-binary-ieee754
version: 0.4.4
license: MIT
license-file: license.txt
author: John Millikin <jmillikin@gmail.com>
maintainer: John Millikin <jmillikin@gmail.com>
build-type: Simple
cabal-version: >= 1.6
category: Data
stability: experimental
homepage: https://john-millikin.com/software/data-binary-ieee754/
bug-reports: mailto:jmillikin@gmail.com
synopsis: Parser/Serialiser for IEEE-754 floating-point values
description:
Convert Float and Decimal values to/from raw octets.
extra-source-files:
tests/*.hs
tests/tests.cabal
source-repository head
type: git
location: https://john-millikin.com/code/haskell-binary-ieee754/
source-repository this
type: git
location: https://john-millikin.com/code/haskell-binary-ieee754/
tag: data-binary-ieee754_0.4.4
library
ghc-options: -Wall -O2
hs-source-dirs: lib
build-depends:
base >= 4.1 && < 5.0
, binary >= 0.4
exposed-modules:
Data.Binary.IEEE754
|