Cabal revisions of continued-fraction-0.1.0.0
Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.
revision 1
-name: continued-fraction-version: 0.1.0.0-synopsis: Types and functions for working with continued fractions in Haskell-description: This package provides facilities for working with both continued fractions- and rational approximants. It uses lists internally, so it will probably- not be fast if you need large convergents.-homepage: https://github.com/vmchale/continued-fractions#readme-license: BSD3-license-file: LICENSE-author: Vanessa McHale-maintainer: vanessa.mchale@reconfigure.io-copyright: Copyright: (c) 2017 Vanessa McHale-category: Math-build-type: Simple-extra-source-files: README.md- , stack.yaml- , .travis.yml-cabal-version: >=1.10--Flag development {- Description: Enable `-Werror`- manual: True- default: False-}--library- hs-source-dirs: src- exposed-modules: Num.ContinuedFraction- build-depends: base >= 4.7 && < 5- , recursion-schemes >= 5.0- default-language: Haskell2010- if flag(development)- ghc-options: -Werror- ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wcompat--test-suite continued-fractions-test- type: exitcode-stdio-1.0- hs-source-dirs: test- main-is: Spec.hs- build-depends: base- , continued-fraction- , hspec- ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wcompat- default-language: Haskell2010--benchmark continued-fractions-bench- type: exitcode-stdio-1.0- hs-source-dirs: bench- main-is: Bench.hs- build-depends: base- , continued-fraction- , criterion- ghc-options: -O2 -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wcompat- default-language: Haskell2010--source-repository head- type: git- location: https://github.com/vmchale/continued-fractions+name: continued-fraction +version: 0.1.0.0 +x-revision: 1 +synopsis: Types and functions for working with continued fractions in Haskell +description: This package provides facilities for working with both continued fractions + and rational approximants. It uses lists internally, so it will probably + not be fast if you need large convergents. +homepage: https://github.com/vmchale/continued-fractions#readme +license: BSD3 +license-file: LICENSE +author: Vanessa McHale +maintainer: vanessa.mchale@reconfigure.io +copyright: Copyright: (c) 2017 Vanessa McHale +category: Math +build-type: Simple +extra-source-files: README.md + , stack.yaml + , .travis.yml +cabal-version: >=1.10 + +Flag development { + Description: Enable `-Werror` + manual: True + default: False +} + +library + hs-source-dirs: src + exposed-modules: Num.ContinuedFraction + build-depends: base >= 4.9 && < 5 + , recursion-schemes >= 5.0 + default-language: Haskell2010 + if flag(development) + ghc-options: -Werror + ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wcompat + +test-suite continued-fractions-test + type: exitcode-stdio-1.0 + hs-source-dirs: test + main-is: Spec.hs + build-depends: base + , continued-fraction + , hspec + ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wcompat + default-language: Haskell2010 + +benchmark continued-fractions-bench + type: exitcode-stdio-1.0 + hs-source-dirs: bench + main-is: Bench.hs + build-depends: base + , continued-fraction + , criterion + ghc-options: -O2 -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wcompat + default-language: Haskell2010 + +source-repository head + type: git + location: https://github.com/vmchale/continued-fractions