-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathccl-hs.cabal
More file actions
42 lines (38 loc) · 953 Bytes
/
Copy pathccl-hs.cabal
File metadata and controls
42 lines (38 loc) · 953 Bytes
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
31
32
33
34
35
36
37
38
39
40
41
42
cabal-version: 3.0
name: ccl-hs
version: 0.1.0.0
synopsis: CCL implementation in haskell
-- description:
license: BSD-3-Clause
license-file: LICENSE
author: LitFill
maintainer: marrazzy54@gmail.com
-- copyright:
category: Data
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules: CCL
-- other-modules:
-- other-extensions:
build-depends:
, base ^>=4.20.0.0
, megaparsec
, text
, containers
hs-source-dirs: src
default-language: GHC2024
executable ccl-hs
import: warnings
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends:
base ^>=4.20.0.0,
ccl-hs
hs-source-dirs: app
default-language: GHC2024