This repository has been archived by the owner on Apr 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshine.cabal
74 lines (69 loc) · 1.48 KB
/
shine.cabal
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
cabal-version: 2.0
-- This file has been generated from package.yaml by hpack version 0.35.0.
--
-- see: https://github.com/sol/hpack
name: shine
version: 0.1
homepage: https://github.com/bandithedoge/shine#readme
bug-reports: https://github.com/bandithedoge/shine/issues
author: bandithedoge
maintainer: [email protected]
copyright: 2022 Mikołaj Lercher
license: GPL-3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/bandithedoge/shine
library
exposed-modules:
Shine
Shine.ANSI
Shine.Render
Shine.Types
Shine.Util
other-modules:
Paths_shine
autogen-modules:
Paths_shine
hs-source-dirs:
src
build-depends:
aeson
, base
, bytestring
, containers
, hable
, hashable
, optstream
, pandoc-types
, process-extras
, relude
, terminal-size
, text
, unordered-containers
, word-wrap
mixins:
base hiding (Prelude)
, relude (Relude as Prelude)
default-language: Haskell2010
executable shine
main-is: Main.hs
other-modules:
Paths_shine
autogen-modules:
Paths_shine
hs-source-dirs:
app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base
, relude
, shine
, text
mixins:
base hiding (Prelude)
, relude (Relude as Prelude)
default-language: Haskell2010