advent-of-code/2015/haskell/haskell.cabal

52 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-07-30 01:11:49 +02:00
cabal-version: 3.0
name: aoc2015
version: 0.1.0.0
synopsis: Advent of Code 2015 solutions
2023-10-09 20:44:52 +02:00
-- A longer description of the package.
-- description:
homepage:
-- A URL where users can report bugs.
-- bug-reports:
2024-07-30 01:11:49 +02:00
license: MIT
author: Maciej Jur
maintainer: maciej@kamoshi.org
2023-10-09 20:44:52 +02:00
-- A copyright notice.
-- copyright:
-- category:
extra-source-files: CHANGELOG.md
library
2024-07-30 01:11:49 +02:00
exposed-modules:
Day01
Day02
Day03
2024-08-04 15:06:49 +02:00
Day04
2024-08-06 22:29:35 +02:00
Day05
2024-07-30 01:11:49 +02:00
-- Modules included in this library but not exported.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
2024-08-04 15:06:49 +02:00
build-depends:
base >=4.16.4.0,
bytestring >=0.10.10.0,
cryptohash-md5 >=0.11.101.0,
text >=2.1.1,
2024-07-30 01:11:49 +02:00
hs-source-dirs: solutions
default-language: Haskell2010
2023-10-09 20:44:52 +02:00
executable haskell
2024-07-30 01:11:49 +02:00
main-is: Main.hs
-- Modules included in this executable, other than Main.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends:
aoc2015,
2024-08-04 15:06:49 +02:00
base >=4.16.4.0,
2024-08-06 22:29:35 +02:00
text >=2.1.1,
2024-07-30 01:11:49 +02:00
hs-source-dirs: app
default-language: Haskell2010