-
Notifications
You must be signed in to change notification settings - Fork 0
/
ip-quoter.cabal
36 lines (33 loc) · 1.1 KB
/
ip-quoter.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
name: ip-quoter
version: 1.0.1.1
synopsis: Quasiquoter for IP addresses
description:
A quasiquoter for IP address literals – That is, IPv4 decimal-dotted or IPv6
colon-separated notation.
homepage: https://github.com/shlevy/ip-quoter
license: MIT
license-file: LICENSE
author: Shea Levy
maintainer: shea@shealevy.com
copyright: (c) 2015 Shea Levy
category: Network
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: Network.IP.Quoter
build-depends: base >=4.7 && <5, template-haskell, network, cpu
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: test.hs
build-depends: base >=4.7 && <5,
tasty,
tasty-hunit,
network,
cpu,
ip-quoter
default-language: Haskell2010
source-repository head
type: git
location: git://github.com/shlevy/ip-quoter.git