multi-cabal-0.1.0.0: multi-cabal.cabal
name: multi-cabal
version: 0.1.0.0
synopsis: A tool supporting multi cabal project builds.
description: A tool supporting multi cabal project builds.
homepage: https://github.com/aka-bash0r/multi-cabal
license: MIT
license-file: LICENSE
author: Nils 'bash0r' Jonsson
maintainer: aka.bash0r@gmail.com
-- copyright:
category: Development
build-type: Simple
extra-source-files: LICENSE
, README.md
, changelog.md
cabal-version: >=1.10
library
exposed-modules: Data.Model.Project
, Data.Model.Utility
, Logic.Dependency.Resolution
build-depends: base >=4.8 && <4.9
, aeson >=0.9 && <0.10
, filepath >=1.4 && <1.5
, mtl >=2.2 && <2.3
hs-source-dirs: src-lib
default-language: Haskell2010
executable multi-cabal
main-is: Main.hs
other-modules: MultiCabal.Commands
, MultiCabal.Commands.Help
, MultiCabal.Commands.Install
, MultiCabal.Commands.Version
, MultiCabal.Instruction
, Paths_multi_cabal
build-depends: base >=4.8 && <4.9
, aeson >=0.9 && <0.10
, filepath >=1.4 && <1.5
, directory >=1.2 && <1.3
, bytestring >=0.10 && <0.11
, process >=1.2 && <1.3
, strict >=0.3 && <0.4
, AAI >=0.2 && <0.3
, multi-cabal
hs-source-dirs: src
default-language: Haskell2010
Test-Suite multi-cabal-tests
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: src-test
build-depends: base >=4.8 && <4.9
, test-framework
, test-framework-hunit
, HUnit
, multi-cabal