-
Notifications
You must be signed in to change notification settings - Fork 1
/
han2zen.cabal
55 lines (50 loc) · 1.37 KB
/
han2zen.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.31.1.
--
-- see: https://github.com/sol/hpack
--
-- hash: 7432df05297105b7396efdecc91a95977e6ca1c8be157bb2d5f55bdb3e1ebaef
name: han2zen
version: 0.1
synopsis: Convert Halfwidth Katakana to Fullwidth Katakana.
description: This package provides functions to convert Halfwidth Katakana to Fullwidth Katakana.
category: Text
homepage: https://github.com/wataru86/han2zen#readme
bug-reports: https://github.com/wataru86/han2zen/issues
author: Wataru Yamada
maintainer: Wataru Yamada <[email protected]>
copyright: Copyright (c) 2018 Wataru Yamada
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/wataru86/han2zen
library
exposed-modules:
Text.Han2Zen
Text.Han2Zen.Text
other-modules:
Paths_han2zen
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
, text
default-language: Haskell2010
test-suite han2zen-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_han2zen
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, han2zen
, text
default-language: Haskell2010