64 lines
1.2 KiB
Plaintext
64 lines
1.2 KiB
Plaintext
cabal-version: 3.0
|
|
name: __PROJECT-NAME__
|
|
version: 0.1.0.0
|
|
synopsis: __DESCRIPTION__
|
|
description: __DESCRIPTION__
|
|
license: GPL-3.0-only
|
|
license-file: LICENSE
|
|
author: __USER-NAME__
|
|
maintainer: __USER-MAIL-ADDRESS__
|
|
|
|
-- copyright:
|
|
category: Language
|
|
build-type: Simple
|
|
extra-doc-files:
|
|
|
|
common common
|
|
ghc-options: -Wno-typed-holes -fdefer-typed-holes
|
|
|
|
default-extensions:
|
|
BlockArguments
|
|
DataKinds
|
|
DeriveDataTypeable
|
|
DeriveGeneric
|
|
DeriveTraversable
|
|
DerivingVia
|
|
FlexibleContexts
|
|
GADTs
|
|
GeneralisedNewtypeDeriving
|
|
LambdaCase
|
|
MultiWayIf
|
|
NoFieldSelectors
|
|
OverloadedLabels
|
|
OverloadedRecordDot
|
|
OverloadedStrings
|
|
PartialTypeSignatures
|
|
PatternSynonyms
|
|
StandaloneDeriving
|
|
TypeApplications
|
|
TypeFamilies
|
|
|
|
default-language: GHC2021
|
|
|
|
library
|
|
import: common
|
|
|
|
-- cabal-fmt: expand sydml/src/ -Main
|
|
exposed-modules:
|
|
|
|
default-language: GHC2021
|
|
|
|
build-depends:
|
|
, base ^>=4.19.1.0
|
|
, containers
|
|
, hashable
|
|
, mtl
|
|
, lens
|
|
, pretty-simple
|
|
, text >=2.0 && <2.2
|
|
, transformers
|
|
, unordered-containers
|
|
|
|
hs-source-dirs: src
|
|
|