cabal-version: 1.18 -- prefix-units.cabal auto-generated by cabal init. For additional -- options, see -- http://www.haskell.org/cabal/release/cabal-latest/doc/users-guide/authors.html#pkg-descr. -- The name of the package. name: prefix-units -- The package version. See the Haskell package versioning policy -- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for -- standards guiding when and how versions should be incremented. version: 0.3.0.1 x-revision: 1 -- A short (one-line) description of the package. synopsis: A basic library for SI/IEC prefix units -- A longer description of the package. description: This library deals with parsing values containing \"prefix units\" (both IEC\/binary and SI). For example, it can parse 10M and 1G, and it can also format values for displaying with the \"optimal\" unit. For more details, see the man page units(7), and . -- URL for the project homepage or repository. homepage: https://github.com/iustin/prefix-units -- The license under which the package is released. license: BSD3 -- The file containing the license text. license-file: LICENSE -- The package author(s). author: Iustin Pop -- An email address to which users can send suggestions, bug reports, -- and patches. maintainer: Iustin Pop -- A copyright notice. copyright: (c) 2012, 2014, 2015 Google Inc. category: Data -- Stability field. stability: stable bug-reports: https://github.com/iustin/prefix-units/issues build-type: Simple -- Extra files to be distributed with the package, such as examples or -- a README. extra-source-files: README.md CHANGES.md Makefile example.hs tested-with: GHC==8.0.2 , GHC==8.2.2 , GHC==8.4 , GHC==8.6 , GHC==8.8 , GHC==8.10 , GHC==9.0 , GHC==9.2 , GHC==9.4 , GHC==9.6 source-repository head Type: git Location: https://github.com/iustin/prefix-units.git source-repository this Type: git Location: https://github.com/iustin/prefix-units.git Tag: v0.3.0.1 library -- Modules exported by the library. exposed-modules: Data.Prefix.Units -- Packages needed in order to build this package. build-depends: base >= 3 && < 5 -- Modules not exported by this package. other-modules: Data.Prefix.Units.Compat ghc-options: -Wall default-language: Haskell2010 default-extensions: Safe TypeSynonymInstances FlexibleInstances -- Extra tools (e.g. alex, hsc2hs, ...) needed to build the source. -- Build-tools: Test-Suite test-units type: exitcode-stdio-1.0 hs-source-dirs: tests main-is: Properties.hs build-depends: base >= 3 , Cabal >= 1.9.2 , test-framework >= 0.6 , test-framework-quickcheck2 >= 0.2.12 , test-framework-hunit >= 0.2.7 , QuickCheck >= 2.4.2 , HUnit >= 1.2.4 , deepseq >= 1.4.0.0 , prefix-units ghc-options: -Wall -fno-warn-orphans default-extensions: CPP ScopedTypeVariables default-language: Haskell2010