o-clock-0.0.0: o-clock.cabal
name: o-clock
version: 0.0.0
synopsis: Type-safe time library.
description: See README.md for details.
homepage: https://github.com/serokell/o-clock
bug-reports: https://github.com/serokell/o-clock/issues
license: MIT
license-file: LICENSE
author: @serokell
maintainer: Serokell <hi@serokell.io>
copyright: 2018 Serokell
category: Time
build-type: Simple
extra-doc-files: CHANGELOG.md
, README.md
, README.lhs
cabal-version: >=2.0
tested-with: GHC == 8.4.1
source-repository head
type: git
location: https://github.com/serokell/o-clock
library
hs-source-dirs: src
exposed-modules: Time
Time.Formatting
Time.Rational
Time.TimeStamp
Time.Units
ghc-options: -Wall
build-depends: base >= 4.10 && < 5
, ghc-prim >= 0.5
, transformers >= 0.5
default-language: Haskell2010
default-extensions: OverloadedStrings
RecordWildCards
executable play-o-clock
main-is: Playground.hs
build-depends: o-clock
, base >= 4.10 && < 5
hs-source-dirs: examples
default-language: Haskell2010
ghc-options: -threaded -Wall
-fno-warn-orphans
test-suite o-clock-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: Test.Time.Property
Test.Time.TimeStamp
Test.Time.TypeSpec
Test.Time.Units
build-depends: base >= 4.10 && < 5
, o-clock
, hedgehog ^>= 0.5.1
, tasty ^>= 0.12
, tasty-hedgehog ^>= 0.1
, tasty-hspec ^>= 1.1.3
, type-spec ^>= 0.3.0.1
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
default-extensions: OverloadedStrings
RecordWildCards
test-suite readme-test
type: exitcode-stdio-1.0
main-is: README.lhs
build-tool-depends: markdown-unlit:markdown-unlit
build-depends: base >= 4.10 && < 5
, o-clock
, markdown-unlit ^>= 0.5
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -pgmL markdown-unlit
default-language: Haskell2010
benchmark o-clock-benchmark
type: exitcode-stdio-1.0
default-language: Haskell2010
ghc-options: -Wall -O2 -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: benchmark
main-is: Main.hs
build-depends: base >= 4.8 && < 5
, o-clock
, deepseq >= 1.4
, gauge >= 0.2.1 && < 1
, tiempo >= 0.0.1.1
, time-units == 1.0.0
default-extensions: OverloadedStrings
RecordWildCards