hscuid-1.2.0.0: hscuid.cabal
-- Initial hscuid.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: hscuid
version: 1.2.0.0
synopsis: Collision-resistant IDs
description: See README (link below).
homepage: https://github.com/eightyeight/hscuid
license: BSD3
license-file: LICENSE
author: Daniel Buckmaster
maintainer: dan.buckmaster@gmail.com
-- copyright:
category: Web
build-type: Simple
cabal-version: >=1.8
extra-source-files: README.md
library
hs-source-dirs: lib
exposed-modules: Web.Cuid
other-modules: Web.Cuid.Internal
build-depends: base >= 4.6 && < 5,
formatting >= 6.2,
time >= 1.4,
random >= 1.0,
transformers >= 0.4,
hostname >= 1.0,
text >= 1.2
if os(windows)
build-depends: Win32 >= 2.3
extra-libraries: kernel32
else
build-depends: unix >= 2.6
ghc-options: -Wall
test-suite hscuid-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Test.hs
build-depends: base >= 4.6 && < 5,
containers ==0.5.*,
hscuid
ghc-options: -Wall -rtsopts -O2