cabal-version: 1.12 -- This file has been generated from package.yaml by hpack version 0.35.2. -- -- see: https://github.com/sol/hpack name: hashids version: 1.1.1.0 synopsis: Hashids generates short, unique, non-sequential ids from numbers. description: This is a Haskell port of the Hashids library. It is typically used to encode numbers to a format suitable to appear in visible places like urls. It converts numbers like 347 into strings like yr8, or a list of numbers like [27, 986] into 3kTMd. You can also decode those ids back. This is useful in bundling several parameters into one. category: Web homepage: http://hashids.org/ bug-reports: https://github.com/laserpants/hashids-haskell/issues author: Johannes Hildén maintainer: Johannes Hildén license: MIT license-file: LICENSE build-type: Simple extra-source-files: test/testdata/testdata1.txt source-repository head type: git location: https://github.com/laserpants/hashids-haskell library exposed-modules: Web.Hashids other-modules: Paths_hashids hs-source-dirs: src ghc-options: -Wall -Wcompat build-depends: base >=4.9 && <5 , bytestring >=0.10.8.1 && <=0.12.1.0 , containers >=0.5.7.1 && <0.7.0 , split >=0.2.3.2 && <0.3.0.0 default-language: Haskell2010 test-suite hashids-test type: exitcode-stdio-1.0 main-is: Test.hs other-modules: Test.Web.Hashids.Gen Test.Web.Hashids.Property Paths_hashids hs-source-dirs: test ghc-options: -Wall -Wcompat -threaded build-depends: base >=4.9 && <5 , bytestring >=0.10.8.1 && <=0.12.1.0 , containers >=0.5.7.1 && <0.7.0 , hashids , hedgehog , split >=0.2.3.2 && <0.3.0.0 default-language: Haskell2010