blob: 233d8a5e3b1d5175fa8023e2fc0ae983998d0073 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
cabal-version: 3.0
name: loom
version: 0.1.0.0
-- synopsis:
-- description:
homepage: tccq.net
license: MIT
license-file: LICENSE
author: Thomas Ulmer
maintainer: thomasmulmer02@gmail.com
-- copyright:
category: Web
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall
executable loom
import: warnings
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base ^>=4.18.3.0
, filepath
, directory
, text
hs-source-dirs: src
default-language: Haskell2010
|