41 lines
1,006 B
Plaintext
41 lines
1,006 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
|
|
hs-source-dirs: src
|
|
default-language: GHC2021
|
|
build-depends: base ^>=4.17.2.0
|
|
, containers
|
|
, fingertree
|
|
exposed-modules: Day1
|
|
, Day2
|
|
, Day3
|
|
, Day4
|
|
, Day5
|
|
, Day6
|
|
, Day7
|
|
, Day8
|
|
|
|
executable aoc2023
|
|
import: warnings
|
|
main-is: Main.hs
|
|
build-depends:
|
|
base ^>=4.17.2.0,
|
|
aoc2023
|
|
|
|
hs-source-dirs: app
|
|
default-language: GHC2021
|