-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslugify.cabal
54 lines (50 loc) · 1.36 KB
/
slugify.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
54
name: slugify
version: 0.1.0.2
synopsis: Convert text into slugs.
description: Convert a 'Text' object into a visually pleasant URL component.
homepage: https://github.com/hapytex/slugify#readme
license: BSD3
license-file: LICENSE
author: Willem Van Onsem
maintainer: [email protected]
copyright: 2020 Willem Van Onsem
category: utils
build-type: Simple
extra-source-files:
README.md
, CHANGELOG.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules:
Text.Slugify
build-depends:
base >= 4.7 && < 5
, text >= 0.1
, unicode-transforms >= 0.1.0.1
default-language: Haskell2010
test-suite gulsify
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
other-modules:
Text.SlugifySpec
build-depends:
base
, slugify
, hspec ==2.*
, QuickCheck >=2.8
, text >= 0.1
build-tool-depends: hspec-discover:hspec-discover == 2.*
default-language: Haskell2010
default-extensions:
BlockArguments
, OverloadedStrings
ghc-options:
-Wall -Wcompat -Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
source-repository head
type: git
location: https://github.com/hapytex/slugify