11cabal-version : 1.12
22
3- -- This file has been generated from package.yaml by hpack version 0.35.2 .
3+ -- This file has been generated from package.yaml by hpack version 0.37.0 .
44--
55-- see: https://github.com/sol/hpack
66
77name : agda-language-server
8- version : 0.2.6.4.0.3
8+ version : 0.2.6.4.3.0
99synopsis : An implementation of language server protocal (LSP) for Agda 2.
1010description : Please see the README on GitHub at <https://github.com/agda/agda-language-server#readme>
1111category : Development
@@ -22,22 +22,32 @@ extra-source-files:
2222 CHANGELOG.md
2323 package.yaml
2424 stack.yaml
25- stack-8.10-Agda-2.6.2.2.yaml
26- stack-9.0-Agda-2.6.2.2.yaml
2725 stack-9.2-Agda-2.6.2.2.yaml
2826 stack-9.2-Agda-2.6.3.yaml
27+ stack-9.2-Agda-2.6.4.yaml
28+ stack-9.2-Agda-2.6.4.3.yaml
2929
3030source-repository head
3131 type : git
3232 location : https://github.com/banacorn/agda-language-server
3333
3434flag Agda-2-6-2-2
35- description : Embed Agda-2.6.2.2 (rather than 2.6.4)
35+ description : Embed Agda-2.6.2.2
3636 manual : True
3737 default : False
3838
3939flag Agda-2-6-3
40- description : Embed Agda-2.6.3 (rather than 2.6.4)
40+ description : Embed Agda-2.6.3
41+ manual : True
42+ default : False
43+
44+ flag Agda-2-6-4
45+ description : Embed Agda-2.6.4
46+ manual : True
47+ default : False
48+
49+ flag Agda-2-6-4-3
50+ description : Embed Agda-2.6.4.3
4151 manual : True
4252 default : False
4353
@@ -75,6 +85,7 @@ library
7585 default-extensions :
7686 LambdaCase
7787 OverloadedStrings
88+ PatternSynonyms
7889 TypeOperators
7990 ghc-options : -Wincomplete-patterns -Wunused-do-bind -Wunused-foralls -Wwarnings-deprecations -Wwrong-do-bind -Wmissing-fields -Wmissing-methods -Wmissing-pattern-synonym-signatures -Wmissing-signatures -Werror=incomplete-patterns -fno-warn-orphans
8091 build-depends :
@@ -85,8 +96,8 @@ library
8596 , containers
8697 , directory
8798 , filepath
88- , lsp < 2
89- , lsp-types < 2
99+ , lsp >= 2
100+ , lsp-types >= 2
90101 , mtl
91102 , network
92103 , network-simple
@@ -95,19 +106,20 @@ library
95106 , stm
96107 , strict
97108 , text
109+ , text-icu
98110 default-language : Haskell2010
99- if flag(Agda-2-6-2-2) && !flag(Agda-2-6-3)
111+ if flag(Agda-2-6-2-2)
100112 build-depends :
101113 Agda == 2.6.2.2
102- if !flag(Agda-2-6-2-2) && flag(Agda-2-6-3)
114+ if flag(Agda-2-6-3)
103115 build-depends :
104116 Agda == 2.6.3
105- if ! flag(Agda-2-6-2-2) && !flag(Agda-2-6-3 )
117+ if flag(Agda-2-6-4 )
106118 build-depends :
107119 Agda == 2.6.4
108- if flag(Agda-2-6-2-2) && flag(Agda-2-6 -3)
120+ if flag(Agda-2-6-4 -3)
109121 build-depends :
110- Agda < 0
122+ Agda == 2.6.4.3
111123
112124executable als
113125 main-is : Main.hs
@@ -118,6 +130,7 @@ executable als
118130 default-extensions :
119131 LambdaCase
120132 OverloadedStrings
133+ PatternSynonyms
121134 TypeOperators
122135 ghc-options : -Wincomplete-patterns -Wunused-do-bind -Wunused-foralls -Wwarnings-deprecations -Wwrong-do-bind -Wmissing-fields -Wmissing-methods -Wmissing-pattern-synonym-signatures -Wmissing-signatures -threaded -rtsopts -with-rtsopts=-N -Werror=incomplete-patterns -fno-warn-orphans
123136 build-depends :
@@ -129,8 +142,8 @@ executable als
129142 , containers
130143 , directory
131144 , filepath
132- , lsp < 2
133- , lsp-types < 2
145+ , lsp >= 2
146+ , lsp-types >= 2
134147 , mtl
135148 , network
136149 , network-simple
@@ -139,19 +152,20 @@ executable als
139152 , stm
140153 , strict
141154 , text
155+ , text-icu
142156 default-language : Haskell2010
143- if flag(Agda-2-6-2-2) && !flag(Agda-2-6-3)
157+ if flag(Agda-2-6-2-2)
144158 build-depends :
145159 Agda == 2.6.2.2
146- if !flag(Agda-2-6-2-2) && flag(Agda-2-6-3)
160+ if flag(Agda-2-6-3)
147161 build-depends :
148162 Agda == 2.6.3
149- if ! flag(Agda-2-6-2-2) && !flag(Agda-2-6-3 )
163+ if flag(Agda-2-6-4 )
150164 build-depends :
151165 Agda == 2.6.4
152- if flag(Agda-2-6-2-2) && flag(Agda-2-6 -3)
166+ if flag(Agda-2-6-4 -3)
153167 build-depends :
154- Agda < 0
168+ Agda == 2.6.4.3
155169
156170test-suite als-test
157171 type : exitcode-stdio-1.0
@@ -190,6 +204,7 @@ test-suite als-test
190204 default-extensions :
191205 LambdaCase
192206 OverloadedStrings
207+ PatternSynonyms
193208 TypeOperators
194209 ghc-options : -Wincomplete-patterns -Wunused-do-bind -Wunused-foralls -Wwarnings-deprecations -Wwrong-do-bind -Wmissing-fields -Wmissing-methods -Wmissing-pattern-synonym-signatures -Wmissing-signatures -threaded -rtsopts -with-rtsopts=-N -Werror=incomplete-patterns -fno-warn-orphans
195210 build-depends :
@@ -200,8 +215,8 @@ test-suite als-test
200215 , containers
201216 , directory
202217 , filepath
203- , lsp < 2
204- , lsp-types < 2
218+ , lsp >= 2
219+ , lsp-types >= 2
205220 , mtl
206221 , network
207222 , network-simple
@@ -214,16 +229,17 @@ test-suite als-test
214229 , tasty-hunit
215230 , tasty-quickcheck
216231 , text
232+ , text-icu
217233 default-language : Haskell2010
218- if flag(Agda-2-6-2-2) && !flag(Agda-2-6-3)
234+ if flag(Agda-2-6-2-2)
219235 build-depends :
220236 Agda == 2.6.2.2
221- if !flag(Agda-2-6-2-2) && flag(Agda-2-6-3)
237+ if flag(Agda-2-6-3)
222238 build-depends :
223239 Agda == 2.6.3
224- if ! flag(Agda-2-6-2-2) && !flag(Agda-2-6-3 )
240+ if flag(Agda-2-6-4 )
225241 build-depends :
226242 Agda == 2.6.4
227- if flag(Agda-2-6-2-2) && flag(Agda-2-6 -3)
243+ if flag(Agda-2-6-4 -3)
228244 build-depends :
229- Agda < 0
245+ Agda == 2.6.4.3
0 commit comments