-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathascii-table.cabal
43 lines (41 loc) · 1.02 KB
/
ascii-table.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
name: ascii-table
version: 0.3.0.2
synopsis: ASCII table
description: Draw an ASCII table
category: Data
homepage: https://github.com/Sentenai/ascii-table#readme
bug-reports: https://github.com/Sentenai/ascii-table/issues
author: Sentenai
maintainer: mitchellwrosen@gmail.com
copyright: 2016 Sentenai, Inc.
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
tested-with: GHC == 7.4.2,
GHC == 7.6.3,
GHC == 7.8.4,
GHC == 7.10.3,
GHC == 8.0.2,
GHC == 8.2.2,
GHC == 8.4.4,
GHC == 8.6.3
source-repository head
type: git
location: https://github.com/Sentenai/ascii-table
library
hs-source-dirs: src
ghc-options: -Wall
build-depends:
aeson < 1.5
, base >= 4.5 && < 5
, containers < 0.7
, dlist < 0.9
, hashable < 1.3
, text < 1.3
, unordered-containers < 0.3
, vector < 0.13
, wl-pprint-extras >= 1.3 && < 3.6
exposed-modules:
Data.AsciiTable
default-language: Haskell2010