-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNanoID.cabal
54 lines (49 loc) · 1.63 KB
/
NanoID.cabal
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
52
53
name: NanoID
version: 3.4.0.2
synopsis: NanoID generator
description: Library and CLI tool for NanoID generation
license: BSD3
license-file: LICENSE
author: Michel Boucey
maintainer: [email protected]
copyright: (c) 2021-2024 - Michel Boucey
category: Data
build-type: Simple
cabal-version: >=1.10
extra-source-files: ReadMe.md
Tested-With:
GHC ==8.8.4
|| ==8.10.7
|| ==9.0.2
|| ==9.2.8
|| ==9.4.8
|| ==9.6.5
|| ==9.8.2
|| ==9.10.1
|| ==9.12.1
source-repository head
type: git
location: https://github.com/MichelBoucey/NanoID.git
library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: Data.NanoID
build-depends: aeson >= 1.5.6 && < 1.6 || >= 2.0 && < 2.3
, base >= 4.7 && < 5
, bytestring >= 0.10 && < 0.13
, cereal >= 0.5.8 && < 0.5.9
, extra >= 1.6 && < 1.9
, mwc-random > 0.15 && < 0.16
, text >= 1.2.3 && < 2.2
executable nanoid
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
GHC-Options: -Wall -O2
other-modules: Options
Paths_NanoID
build-depends: base >= 4.7 && < 5
, bytestring >= 0.10 && < 0.13
, mwc-random >= 0.13 && < 0.16
, NanoID
, optparse-applicative >= 0.14 && < 0.19