-
Notifications
You must be signed in to change notification settings - Fork 271
/
package.yaml
77 lines (72 loc) · 1.42 KB
/
package.yaml
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
name: unison-syntax
github: unisonweb/unison
copyright: Copyright (C) 2013-2022 Unison Computing, PBC and contributors
ghc-options: -Wall
library:
source-dirs: src
when:
- condition: false
other-modules: Paths_unison_syntax
dependencies:
- base
- bytes
- containers
- cryptonite
- deriving-compat
- extra
- free
- lens
- megaparsec
- mtl
- parser-combinators
- text
- unison-core
- unison-core1
- unison-hash
- unison-prelude
- unison-util-base32hex
- unison-util-bytes
tests:
syntax-tests:
when:
- condition: false
other-modules: Paths_unison_syntax
dependencies:
- base
- code-page
- easytest
- unison-syntax
- unison-core
- unison-prelude
main: Main.hs
source-dirs: test
default-extensions:
- ApplicativeDo
- BangPatterns
- BlockArguments
- DeriveAnyClass
- DeriveFoldable
- DeriveFunctor
- DeriveGeneric
- DeriveTraversable
- DerivingStrategies
- DerivingVia
- DoAndIfThenElse
- DuplicateRecordFields
- FlexibleContexts
- FlexibleInstances
- FunctionalDependencies
- GeneralizedNewtypeDeriving
- ImportQualifiedPost
- LambdaCase
- MultiParamTypeClasses
- NamedFieldPuns
- OverloadedStrings
- PatternSynonyms
- RankNTypes
- ScopedTypeVariables
- StandaloneDeriving
- TupleSections
- TypeApplications
- TypeFamilies
- ViewPatterns