name: subnet
version: 0.0.1.4
synopsis: subnetting calculator
homepage: https://github.com/gcganley/subnet
license: MIT
license-file: LICENSE
author: Gregory Ganley
maintainer: Gregory Ganley <gcganley@gcganley.com>
category: Network
build-type: Simple
description: used for my programming work and putting it up for use by others
cabal-version: >=1.18
source-repository head
  type: git
  location: git://github.com/gcganley/subnet.git
library
  ghc-options: -Wall
  build-depends:
                split
              , base >= 4 && < 5
  exposed-modules: Network.Subnet
                   Network.Subnet.Network
                   Network.Subnet.Ip
                   Network.Subnet.Binary
  hs-source-dirs: src
  default-language: Haskell2010