-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
51 lines (46 loc) · 1.51 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: sqids
version: 0.2.2.0
category: Web
synopsis: A small library that lets you generate YouTube-looking IDs from numbers.
description: Sqids (pronounced "squids") is an open-source library that lets you generate YouTube-looking IDs from numbers. These IDs are short, can be generated from a custom alphabet and are guaranteed to be collision-free. For more info, see <https://github.com/sqids/sqids-haskell#readme> and the official Sqids home page <https://sqids.org>.
homepage: https://sqids.org/
github: "github.com/sqids/sqids-haskell"
license: MIT
license-file: LICENSE
author: "Heikki Johannes Hildén"
maintainer: "[email protected]"
copyright: "2023-present Sqids maintainers"
extra-source-files:
- README.md
- CHANGELOG.md
dependencies:
- base >= 4.7 && < 5
- text >= 2.0.2 && < 2.2
- containers >= 0.6.7 && < 0.8
- mtl >= 2.2.2 && < 2.4
- transformers >= 0.5.6.2 && < 0.7
- bytestring >= 0.11.4.0 && < 0.13
ghc-options:
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wmissing-export-lists
- -Wmissing-home-modules
- -Wpartial-fields
- -Wredundant-constraints
library:
source-dirs: src
tests:
sqids-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- sqids
- hspec >= 2.10.10 && < 2.12
- split >= 0.2.3.5 && < 0.3.0.0