packages feed

snowflake-core-0.1.0.1: snowflake-core.cabal

name:                snowflake-core
version:             0.1.0.1
synopsis:            twitter's snowflake
description:         Please see README.md
homepage:            https://github.com/jiakai0419/snowflake#readme
license:             BSD3
license-file:        LICENSE
author:              KaiJia
maintainer:          jiakai0419@gmail.com
copyright:           Copyright: (c) 2016 KaiJia
category:            commercial
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Snowflake
  build-depends:       base >= 4.7 && < 5
                     , time-exts
  default-language:    Haskell2010

test-suite snowflake-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Test.hs
  build-depends:       base
                     , snowflake-core
                     , QuickCheck
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/jiakai0419/snowflake