File tree 2 files changed +70
-2
lines changed
2 files changed +70
-2
lines changed Original file line number Diff line number Diff line change
1
+ cabal-version : 2.2
2
+ name : Cabal-hooks
3
+ version : 3.14
4
+ copyright : 2023, Cabal Development Team
5
+ license : BSD-3-Clause
6
+ license-file : LICENSE
7
+ author : Cabal Development Team <
[email protected] >
8
+
9
+ homepage : http://www.haskell.org/cabal/
10
+ bug-reports : https://github.com/haskell/cabal/issues
11
+ synopsis : API for the Hooks build-type
12
+ description :
13
+ User-facing API for the Hooks build-type.
14
+ category : Distribution
15
+ build-type : Simple
16
+
17
+ extra-doc-files :
18
+ README.md CHANGELOG.md
19
+
20
+ source-repository head
21
+ type : git
22
+ location : https://github.com/haskell/cabal/
23
+ subdir : Cabal-hooks
24
+
25
+ library
26
+ default-language : Haskell2010
27
+ hs-source-dirs : src
28
+
29
+ build-depends :
30
+ Cabal-syntax >= 3.14 && < 3.15 ,
31
+ Cabal >= 3.14 && < 3.15 ,
32
+ base >= 4.13 && < 5 ,
33
+ containers >= 0.5.0.0 && < 0.8 ,
34
+ transformers >= 0.5.6.0 && < 0.7
35
+
36
+ ghc-options : -Wall -fno-ignore-asserts -fwarn-tabs -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates
37
+
38
+ exposed-modules :
39
+ Distribution.Simple.SetupHooks
40
+
41
+ other-extensions :
42
+ BangPatterns
43
+ CPP
44
+ DefaultSignatures
45
+ DeriveDataTypeable
46
+ DeriveFoldable
47
+ DeriveFunctor
48
+ DeriveGeneric
49
+ DeriveTraversable
50
+ ExistentialQuantification
51
+ FlexibleContexts
52
+ FlexibleInstances
53
+ GeneralizedNewtypeDeriving
54
+ ImplicitParams
55
+ KindSignatures
56
+ LambdaCase
57
+ NondecreasingIndentation
58
+ OverloadedStrings
59
+ PatternSynonyms
60
+ RankNTypes
61
+ RecordWildCards
62
+ ScopedTypeVariables
63
+ StandaloneDeriving
64
+ Trustworthy
65
+ TypeFamilies
66
+ TypeOperators
67
+ TypeSynonymInstances
68
+ UndecidableInstances
Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ library
220
220
build-depends :
221
221
async >= 2.0 && < 2.3 ,
222
222
array >= 0.4 && < 0.6 ,
223
- base16-bytestring >= 0.1.1 && < 1.1.0.0 ,
223
+ base16-bytestring >= 0.1.1 && < 1.1 ,
224
224
binary >= 0.7.3 && < 0.9 ,
225
225
bytestring >= 0.10.6.0 && < 0.13 ,
226
226
containers >= 0.5.6.2 && < 0.8 ,
@@ -244,7 +244,7 @@ library
244
244
hackage-security >= 0.6.2.6 && < 0.7 ,
245
245
text >= 1.2.3 && < 1.3 || >= 2.0 && < 2.2 ,
246
246
parsec >= 3.1.13.0 && < 3.2 ,
247
- open-browser >= 0.2.1.0 && < 0.3 ,
247
+ open-browser >= 0.2.1.0 && < 0.4 ,
248
248
regex-base >= 0.94.0.0 && < 0.95 ,
249
249
regex-posix >= 0.96.0.0 && < 0.97 ,
250
250
safe-exceptions >= 0.1.7.0 && < 0.2 ,
You can’t perform that action at this time.
0 commit comments