2019-09-09 21:36:25 +03:00
|
|
|
name: proto
|
|
|
|
version: 0.1.0
|
2019-12-19 14:08:19 +03:00
|
|
|
license: MIT
|
|
|
|
license-file: LICENSE
|
2019-09-09 21:36:25 +03:00
|
|
|
|
|
|
|
dependencies:
|
|
|
|
- base
|
|
|
|
- bound
|
2019-09-11 01:57:00 +03:00
|
|
|
- classy-prelude
|
2019-10-02 01:52:31 +03:00
|
|
|
- containers
|
2019-09-11 01:57:00 +03:00
|
|
|
- deriving-compat
|
2019-10-02 01:52:31 +03:00
|
|
|
- lens
|
|
|
|
- megaparsec
|
2019-09-11 01:57:00 +03:00
|
|
|
- mtl
|
2019-10-02 01:52:31 +03:00
|
|
|
- multimap
|
|
|
|
- para
|
2019-10-02 01:04:11 +03:00
|
|
|
- pretty-show
|
2019-09-09 21:36:25 +03:00
|
|
|
- text
|
2019-09-11 01:57:00 +03:00
|
|
|
- transformers
|
|
|
|
- transformers-compat
|
2019-09-09 21:36:25 +03:00
|
|
|
- unordered-containers
|
2020-01-24 08:20:43 +03:00
|
|
|
- urbit-king
|
2019-09-09 21:36:25 +03:00
|
|
|
|
|
|
|
default-extensions:
|
|
|
|
- ApplicativeDo
|
|
|
|
- BangPatterns
|
|
|
|
- BlockArguments
|
|
|
|
- DeriveAnyClass
|
|
|
|
- DeriveDataTypeable
|
|
|
|
- DeriveFoldable
|
|
|
|
- DeriveGeneric
|
|
|
|
- DeriveTraversable
|
|
|
|
- DerivingStrategies
|
|
|
|
- EmptyDataDecls
|
|
|
|
- FlexibleContexts
|
|
|
|
- FlexibleInstances
|
|
|
|
- FunctionalDependencies
|
|
|
|
- GADTs
|
|
|
|
- GeneralizedNewtypeDeriving
|
|
|
|
- LambdaCase
|
|
|
|
- MultiParamTypeClasses
|
|
|
|
- NamedFieldPuns
|
|
|
|
- NoImplicitPrelude
|
|
|
|
- NumericUnderscores
|
|
|
|
- OverloadedStrings
|
|
|
|
- PartialTypeSignatures
|
2019-09-23 06:19:17 +03:00
|
|
|
- PatternSynonyms
|
2019-09-09 21:36:25 +03:00
|
|
|
- QuasiQuotes
|
|
|
|
- Rank2Types
|
|
|
|
- RankNTypes
|
|
|
|
- RecordWildCards
|
|
|
|
- ScopedTypeVariables
|
2019-09-11 01:57:00 +03:00
|
|
|
- StandaloneDeriving
|
2019-09-09 21:36:25 +03:00
|
|
|
- TemplateHaskell
|
|
|
|
- TupleSections
|
|
|
|
- TypeApplications
|
|
|
|
- TypeFamilies
|
|
|
|
- UnicodeSyntax
|
|
|
|
- ViewPatterns
|
|
|
|
|
|
|
|
library:
|
|
|
|
source-dirs: lib
|
|
|
|
ghc-options:
|
|
|
|
- -fwarn-incomplete-patterns
|
|
|
|
- -fwarn-unused-binds
|
|
|
|
- -fwarn-unused-imports
|
|
|
|
- -O2
|
|
|
|
|
|
|
|
executables:
|
|
|
|
proto:
|
|
|
|
main: Main.hs
|
|
|
|
source-dirs: app
|
|
|
|
dependencies:
|
|
|
|
- proto
|
|
|
|
ghc-options:
|
|
|
|
- -threaded
|
|
|
|
- -rtsopts
|
|
|
|
- -O2
|
|
|
|
- "-with-rtsopts=-N"
|
|
|
|
- -fwarn-incomplete-patterns
|
|
|
|
|
|
|
|
tests:
|
2019-09-11 01:57:00 +03:00
|
|
|
proto-test:
|
2019-09-09 21:36:25 +03:00
|
|
|
main: Spec.hs
|
|
|
|
source-dirs: test
|
|
|
|
dependencies:
|
|
|
|
- proto
|
|
|
|
ghc-options:
|
|
|
|
- -threaded
|
|
|
|
- -rtsopts
|
|
|
|
- -with-rtsopts=-N
|