-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcss-syntax.cabal
More file actions
80 lines (56 loc) · 1.54 KB
/
Copy pathcss-syntax.cabal
File metadata and controls
80 lines (56 loc) · 1.54 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: css-syntax
version: 0.1.0.1
synopsis: High-performance CSS tokenizer and serializer.
description:
See https://drafts.csswg.org/css-syntax/
license: MIT
license-file: LICENSE
author: Tomas Carnecky <tomas.carnecky@gmail.com>, Vladimir Shabanov <dev@vshabanov.com>
maintainer: Tomas Carnecky <tomas.carnecky@gmail.com>
category: Data
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/wereHamster/haskell-css-syntax.git
library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules:
Data.CSS.Syntax.Tokens
build-depends:
base >=4 && <5
, scientific
, text >=2.0 && <2.1
ghc-options: -Wall -O2
test-suite spec
hs-source-dirs: test src
default-language: Haskell2010
ghc-options: -Wall -Wno-orphans
type: exitcode-stdio-1.0
main-is: Test.hs
other-modules:
Data.CSS.Syntax.Tokens
build-depends:
base >=4 && <5
, scientific
, text
, hspec
, directory
, QuickCheck
benchmark benchmark
hs-source-dirs: benchmark src
default-language: Haskell2010
ghc-options: -Wall -Wno-orphans -O2 -rtsopts
-- -fprof-auto -fprof-cafs
type: exitcode-stdio-1.0
main-is: Benchmark.hs
other-modules:
Data.CSS.Syntax.Tokens
build-depends:
base >=4 && <5
, scientific
, text
, criterion
, deepseq
, directory