70 lines
1.4 KiB
Plaintext
70 lines
1.4 KiB
Plaintext
cabal-version: 2.2
|
|
|
|
name: project-euler-solutions
|
|
version: 0.1.0.0
|
|
-- synopsis:
|
|
-- description:
|
|
homepage: https://github.com/Fuxino/project-euler-solutions#readme
|
|
license: MIT
|
|
author: Daniele Fucini
|
|
maintainer: dfucini@gmail.com
|
|
copyright: 2024 Daniele Fucini
|
|
category: Web
|
|
build-type: Simple
|
|
|
|
executable projecteuler
|
|
hs-source-dirs: src
|
|
main-is: Main.hs
|
|
default-language: Haskell2010
|
|
build-depends: base >= 4.7 && < 5
|
|
, containers
|
|
, data-ordlist
|
|
, split
|
|
, time
|
|
, unordered-containers
|
|
ghc-options: -Wall
|
|
-Wcompat
|
|
-Widentities
|
|
-Wincomplete-record-updates
|
|
-Wincomplete-uni-patterns
|
|
-Wmissing-export-lists
|
|
-Wmissing-home-modules
|
|
-Wpartial-fields
|
|
-Wredundant-constraints
|
|
other-modules:
|
|
P001
|
|
P002
|
|
P003
|
|
P004
|
|
P005
|
|
P006
|
|
P007
|
|
P008
|
|
P009
|
|
P010
|
|
P011
|
|
P012
|
|
P013
|
|
P014
|
|
P015
|
|
P016
|
|
P017
|
|
P019
|
|
P020
|
|
P021
|
|
P022
|
|
P023
|
|
P024
|
|
P025
|
|
P026
|
|
P027
|
|
P029
|
|
P030
|
|
P034
|
|
P035
|
|
P036
|
|
P041
|
|
P052
|
|
P054
|
|
ProjectEuler
|