179 lines
4.3 KiB
Plaintext
179 lines
4.3 KiB
Plaintext
cabal-version: 1.12
|
|
|
|
-- This file has been generated from package.yaml by hpack version 0.35.0.
|
|
--
|
|
-- see: https://github.com/sol/hpack
|
|
|
|
name: aoc2022
|
|
version: 0.1.0.0
|
|
description: Please see the README on GitHub at <https://github.com/githubuser/aoc2022#readme>
|
|
homepage: https://github.com/githubuser/aoc2022#readme
|
|
bug-reports: https://github.com/githubuser/aoc2022/issues
|
|
author: Stefan Risberg
|
|
maintainer: steffenomak@gmail.com
|
|
copyright: 2022 Stefan Risberg
|
|
license: BSD3
|
|
license-file: LICENSE
|
|
build-type: Simple
|
|
extra-source-files:
|
|
README.md
|
|
CHANGELOG.md
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://github.com/githubuser/aoc2022
|
|
|
|
library
|
|
exposed-modules:
|
|
Annans
|
|
Day2
|
|
Day3
|
|
Lib
|
|
other-modules:
|
|
Paths_aoc2022
|
|
hs-source-dirs:
|
|
src
|
|
default-extensions:
|
|
AllowAmbiguousTypes
|
|
BangPatterns
|
|
BlockArguments
|
|
DataKinds
|
|
DeriveGeneric
|
|
DuplicateRecordFields
|
|
FlexibleContexts
|
|
FlexibleInstances
|
|
GADTs
|
|
GeneralizedNewtypeDeriving
|
|
LambdaCase
|
|
MultiParamTypeClasses
|
|
MultiWayIf
|
|
NoImplicitPrelude
|
|
NoMonomorphismRestriction
|
|
OverloadedLabels
|
|
OverloadedStrings
|
|
PolyKinds
|
|
RankNTypes
|
|
ScopedTypeVariables
|
|
TemplateHaskell
|
|
TupleSections
|
|
TypeApplications
|
|
TypeFamilies
|
|
TypeOperators
|
|
UndecidableInstances
|
|
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -O3
|
|
build-depends:
|
|
attoparsec
|
|
, base >=4.7 && <5
|
|
, bytestring
|
|
, bytestring-mmap
|
|
, classy-prelude
|
|
, containers
|
|
, optics
|
|
, split
|
|
, streamly
|
|
, streamly-bytestring
|
|
, text
|
|
, unordered-containers
|
|
default-language: Haskell2010
|
|
|
|
executable aoc2022-exe
|
|
main-is: Main.hs
|
|
other-modules:
|
|
Paths_aoc2022
|
|
hs-source-dirs:
|
|
app
|
|
default-extensions:
|
|
AllowAmbiguousTypes
|
|
BangPatterns
|
|
BlockArguments
|
|
DataKinds
|
|
DeriveGeneric
|
|
DuplicateRecordFields
|
|
FlexibleContexts
|
|
FlexibleInstances
|
|
GADTs
|
|
GeneralizedNewtypeDeriving
|
|
LambdaCase
|
|
MultiParamTypeClasses
|
|
MultiWayIf
|
|
NoImplicitPrelude
|
|
NoMonomorphismRestriction
|
|
OverloadedLabels
|
|
OverloadedStrings
|
|
PolyKinds
|
|
RankNTypes
|
|
ScopedTypeVariables
|
|
TemplateHaskell
|
|
TupleSections
|
|
TypeApplications
|
|
TypeFamilies
|
|
TypeOperators
|
|
UndecidableInstances
|
|
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -O3 -threaded -rtsopts -with-rtsopts=-N
|
|
build-depends:
|
|
aoc2022
|
|
, attoparsec
|
|
, base >=4.7 && <5
|
|
, bytestring
|
|
, bytestring-mmap
|
|
, classy-prelude
|
|
, containers
|
|
, optics
|
|
, split
|
|
, streamly
|
|
, streamly-bytestring
|
|
, text
|
|
, unordered-containers
|
|
default-language: Haskell2010
|
|
|
|
test-suite aoc2022-test
|
|
type: exitcode-stdio-1.0
|
|
main-is: Spec.hs
|
|
other-modules:
|
|
Paths_aoc2022
|
|
hs-source-dirs:
|
|
test
|
|
default-extensions:
|
|
AllowAmbiguousTypes
|
|
BangPatterns
|
|
BlockArguments
|
|
DataKinds
|
|
DeriveGeneric
|
|
DuplicateRecordFields
|
|
FlexibleContexts
|
|
FlexibleInstances
|
|
GADTs
|
|
GeneralizedNewtypeDeriving
|
|
LambdaCase
|
|
MultiParamTypeClasses
|
|
MultiWayIf
|
|
NoImplicitPrelude
|
|
NoMonomorphismRestriction
|
|
OverloadedLabels
|
|
OverloadedStrings
|
|
PolyKinds
|
|
RankNTypes
|
|
ScopedTypeVariables
|
|
TemplateHaskell
|
|
TupleSections
|
|
TypeApplications
|
|
TypeFamilies
|
|
TypeOperators
|
|
UndecidableInstances
|
|
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -O3 -threaded -rtsopts -with-rtsopts=-N
|
|
build-depends:
|
|
aoc2022
|
|
, attoparsec
|
|
, base >=4.7 && <5
|
|
, bytestring
|
|
, bytestring-mmap
|
|
, classy-prelude
|
|
, containers
|
|
, optics
|
|
, split
|
|
, streamly
|
|
, streamly-bytestring
|
|
, text
|
|
, unordered-containers
|
|
default-language: Haskell2010
|