forked from laserpants/hashids-haskell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
37 lines (33 loc) · 1.04 KB
/
package.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: hashids
version: 1.0.2.6
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.
homepage: http://hashids.org/
license: MIT
license-file: LICENSE
author: Johannes Hildén <[email protected]>
maintainer: Johannes Hildén <[email protected]>
github: laserpants/hashids-haskell
category: Web
build-type: Simple
extra-source-files:
- test/testdata/*.txt
ghc-options: -Wall -Werror -Wcompat
dependencies:
- base
- bytestring
- containers
- split
library:
source-dirs: src
exposed-modules:
- Web.Hashids
tests:
hashids-test:
main: Test.hs
source-dirs:
- test
dependencies:
- hashids
- hedgehog
ghc-options: -threaded