2017-06-26 12:15:03 +03:00
|
|
|
name: CarpHask
|
2021-09-17 14:54:26 +03:00
|
|
|
version: 0.5.3.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
|
2020-12-09 08:19:28 +03:00
|
|
|
ghc-options: -Wall -Werror
|
2017-06-26 12:15:03 +03:00
|
|
|
hs-source-dirs: src
|
2020-12-16 17:53:55 +03:00
|
|
|
exposed-modules: ArrayTemplates,
|
|
|
|
AssignTypes,
|
2017-06-26 12:15:03 +03:00
|
|
|
ColorText,
|
2020-12-16 17:53:55 +03:00
|
|
|
Commands,
|
|
|
|
Concretize,
|
2017-06-26 12:15:03 +03:00
|
|
|
Constraints,
|
2020-12-16 17:53:55 +03:00
|
|
|
Context,
|
2017-06-26 12:15:03 +03:00
|
|
|
Deftype,
|
2020-12-16 17:53:55 +03:00
|
|
|
Emit,
|
|
|
|
Env,
|
2021-03-09 21:24:02 +03:00
|
|
|
EvalError,
|
2017-08-31 16:25:28 +03:00
|
|
|
Eval,
|
2018-02-01 19:41:29 +03:00
|
|
|
Expand,
|
2021-06-08 08:39:06 +03:00
|
|
|
Forms,
|
2020-12-16 17:53:55 +03:00
|
|
|
GenerateConstraints,
|
|
|
|
Infer,
|
|
|
|
Info,
|
|
|
|
InitialTypes,
|
|
|
|
Interfaces,
|
|
|
|
Managed,
|
|
|
|
Map,
|
2021-06-16 22:41:58 +03:00
|
|
|
Memory,
|
2020-12-16 17:53:55 +03:00
|
|
|
Meta,
|
|
|
|
Obj,
|
|
|
|
Parsing,
|
|
|
|
Path,
|
|
|
|
Polymorphism,
|
|
|
|
Primitives,
|
|
|
|
PrimitiveError
|
|
|
|
Project,
|
2018-02-06 10:39:28 +03:00
|
|
|
Qualify,
|
2020-12-16 17:53:55 +03:00
|
|
|
Reify,
|
|
|
|
RenderDocs,
|
2018-02-06 10:39:28 +03:00
|
|
|
Repl,
|
2020-12-16 17:53:55 +03:00
|
|
|
Set,
|
|
|
|
Scoring,
|
2018-03-27 07:27:52 +03:00
|
|
|
StartingEnv,
|
2020-12-16 17:53:55 +03:00
|
|
|
StaticArrayTemplates,
|
2019-02-20 17:25:00 +03:00
|
|
|
StructUtils,
|
2020-12-16 17:53:55 +03:00
|
|
|
SumtypeCase,
|
|
|
|
Sumtypes,
|
|
|
|
SymPath,
|
|
|
|
Template,
|
|
|
|
ToTemplate,
|
|
|
|
TypeError,
|
2020-12-07 09:06:32 +03:00
|
|
|
TypePredicates,
|
2020-12-16 17:53:55 +03:00
|
|
|
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
|
2018-03-12 18:30:36 +03:00
|
|
|
, filepath
|
2017-06-26 12:15:03 +03:00
|
|
|
, split
|
2020-12-16 17:53:55 +03:00
|
|
|
, hashable
|
2018-02-06 10:39:28 +03:00
|
|
|
, 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
|
2018-10-22 17:10:13 +03:00
|
|
|
, cmark
|
2019-03-12 21:11:12 +03:00
|
|
|
, edit-distance
|
2020-11-23 11:58:06 +03:00
|
|
|
, 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
|
2017-10-23 00:34:06 +03:00
|
|
|
, 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
|
2020-05-21 20:57:40 +03:00
|
|
|
, optparse-applicative
|
2017-06-26 12:15:03 +03:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
2018-02-27 11:50:20 +03:00
|
|
|
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
|
2020-05-21 20:57:40 +03:00
|
|
|
, optparse-applicative
|
2018-02-27 11:50:20 +03:00
|
|
|
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
|
2020-12-07 09:06:32 +03:00
|
|
|
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
|
2018-02-27 11:50:20 +03:00
|
|
|
location: https://github.com/carp-lang/Carp
|