advent-of-code-2023/haskell/aoc2023.cabal

41 lines
1,006 B
Plaintext
Raw Normal View History

2023-12-01 08:19:49 +00:00
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
2023-12-02 08:22:52 +00:00
build-depends: base ^>=4.17.2.0
, containers
2023-12-03 20:24:32 +00:00
, fingertree
2023-12-01 08:19:49 +00:00
exposed-modules: Day1
2023-12-02 08:22:52 +00:00
, Day2
2023-12-03 20:24:32 +00:00
, Day3
2023-12-04 08:29:19 +00:00
, Day4
2023-12-08 22:15:30 +00:00
, Day5
2023-12-08 23:31:04 +00:00
, Day6
2023-12-09 12:10:44 +00:00
, Day7
2023-12-09 14:11:57 +00:00
, Day8
2023-12-01 08:19:49 +00:00
executable aoc2023
import: warnings
main-is: Main.hs
build-depends:
base ^>=4.17.2.0,
aoc2023
hs-source-dirs: app
default-language: GHC2021