32 lines
751 B
Plaintext
32 lines
751 B
Plaintext
|
cabal-version: 3.0
|
||
|
name: aoc2023
|
||
|
version: 0.1.0.0
|
||
|
synopsis: Advent of Code 2023
|
||
|
homepage: https://git.pub.solar/axeman/aoc2023
|
||
|
license: AGPL-3.0-or-later
|
||
|
license-file: LICENSE
|
||
|
author: Akshay Mankar
|
||
|
maintainer: itsakshaymankar@gmail.com
|
||
|
build-type: Simple
|
||
|
extra-doc-files: CHANGELOG.md
|
||
|
|
||
|
common warnings
|
||
|
ghc-options: -Wall
|
||
|
|
||
|
library
|
||
|
import: warnings
|
||
|
build-depends: base ^>=4.17.2.0
|
||
|
hs-source-dirs: src
|
||
|
default-language: GHC2021
|
||
|
exposed-modules: Day1
|
||
|
|
||
|
executable aoc2023
|
||
|
import: warnings
|
||
|
main-is: Main.hs
|
||
|
build-depends:
|
||
|
base ^>=4.17.2.0,
|
||
|
aoc2023
|
||
|
|
||
|
hs-source-dirs: app
|
||
|
default-language: GHC2021
|