Carp/CarpHask.cabal

130 lines
4.0 KiB
Plaintext
Raw Normal View History

2017-06-26 12:15:03 +03:00
name: CarpHask
2021-02-01 21:22:42 +03:00
version: 0.5.0.0
2017-06-26 12:15:03 +03:00
-- synopsis:
-- description:
homepage: https://github.com/eriksvedang/Carp
license: Apache-2.0
license-file: LICENSE
author: Erik Svedäng
maintainer: erik.svedang@gmail.com
copyright: Erik Svedäng
category: General
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
ghc-options: -Wall -Werror
2017-06-26 12:15:03 +03:00
hs-source-dirs: src
exposed-modules: ArrayTemplates,
AssignTypes,
2017-06-26 12:15:03 +03:00
ColorText,
Commands,
Concretize,
2017-06-26 12:15:03 +03:00
Constraints,
Context,
2017-06-26 12:15:03 +03:00
Deftype,
Emit,
Env,
EvalError,
Eval,
Expand,
GenerateConstraints,
Infer,
Info,
InitialTypes,
Interfaces,
Managed,
Map,
Meta,
Obj,
Parsing,
Path,
Polymorphism,
Primitives,
PrimitiveError
Project,
Qualify,
Reify,
RenderDocs,
Repl,
Set,
Scoring,
2018-03-27 07:27:52 +03:00
StartingEnv,
StaticArrayTemplates,
2019-02-20 17:25:00 +03:00
StructUtils,
SumtypeCase,
Sumtypes,
SymPath,
Template,
ToTemplate,
TypeError,
TypePredicates,
Types,
TypesToC,
Util,
Validate
2017-10-20 00:36:17 +03:00
2017-06-26 12:15:03 +03:00
build-depends: base >= 4.7 && < 5
, parsec == 3.1.*
, mtl
, containers
, process
, directory
, filepath
2017-06-26 12:15:03 +03:00
, split
, hashable
, haskeline
2018-07-18 13:23:02 +03:00
, blaze-html
, blaze-markup
2018-03-27 07:27:52 +03:00
, text
2020-05-21 21:44:43 +03:00
, ansi-terminal >= 0.10.3
, cmark
2019-03-12 21:11:12 +03:00
, edit-distance
, open-browser
2017-10-20 00:36:17 +03:00
2017-06-26 12:15:03 +03:00
default-language: Haskell2010
2017-06-26 13:04:39 +03:00
executable carp
2017-06-26 12:15:03 +03:00
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, CarpHask
, containers
, directory
2019-09-24 00:47:26 +03:00
, filepath
2017-10-20 00:36:17 +03:00
, haskeline
2017-06-26 12:15:03 +03:00
, process
, optparse-applicative
2017-06-26 12:15:03 +03:00
default-language: Haskell2010
executable carp-header-parse
hs-source-dirs: headerparse
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, CarpHask
, containers
, directory
, parsec
, optparse-applicative
default-language: Haskell2010
2017-06-26 12:15:03 +03:00
test-suite CarpHask-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, CarpHask
, HUnit
, containers
other-modules: TestConstraints
, TestLookup
2017-06-26 12:15:03 +03:00
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/carp-lang/Carp