1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 00:42:33 +03:00
semantic/semantic-diff.cabal

103 lines
3.5 KiB
Plaintext
Raw Normal View History

2015-11-18 01:44:16 +03:00
name: semantic-diff
version: 0.1.0.0
synopsis: Initial project template from stack
description: Please see README.md
homepage: http://github.com/github/semantic-diff#readme
author: Rob Rix, Josh Vera
2015-11-18 01:52:41 +03:00
maintainer: rob.rix@github.com
2016-01-05 19:26:58 +03:00
copyright: 2016 GitHub
2015-11-18 01:44:16 +03:00
category: Web
2016-01-08 21:24:25 +03:00
build-type: Custom
2015-11-18 01:44:16 +03:00
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: src
2016-02-28 21:36:32 +03:00
exposed-modules: Algorithm
2016-02-28 21:55:19 +03:00
, Alignment
2016-02-28 21:36:32 +03:00
, Category
, Control.Comonad.Cofree
, Control.Monad.Free
, Data.Adjoined
, Data.Align
2016-03-10 17:41:57 +03:00
, Data.Coalescent
2016-03-03 07:08:28 +03:00
, Data.Copointed
, Data.Functor.Both
2016-02-28 21:36:32 +03:00
, Data.Option
, Data.OrderedMap
, Diff
, Diffing
2016-02-27 01:56:38 +03:00
, DiffOutput
2015-11-18 03:25:39 +03:00
, Interpreter
2016-02-11 01:30:14 +03:00
, Language
2015-12-23 01:20:08 +03:00
, Line
2016-02-28 21:36:32 +03:00
, Operation
, Parser
2015-11-18 05:21:51 +03:00
, Patch
2016-02-28 21:36:32 +03:00
, Range
2016-02-25 23:55:28 +03:00
, Renderer
2016-02-25 23:57:28 +03:00
, Renderer.JSON
, Renderer.Patch
2016-02-25 23:32:39 +03:00
, Renderer.Split
2015-11-18 18:09:49 +03:00
, SES
2016-02-28 21:36:32 +03:00
, Source
2016-02-28 21:37:40 +03:00
, SplitDiff
2016-02-28 21:36:32 +03:00
, Syntax
2015-11-18 22:27:09 +03:00
, Term
2015-12-17 20:54:27 +03:00
, TreeSitter
2016-03-01 04:52:30 +03:00
build-depends: aeson
, base >= 4.8 && < 5
2015-12-15 19:47:52 +03:00
, blaze-html
2016-02-24 23:24:51 +03:00
, blaze-markup
2015-12-15 19:47:52 +03:00
, bytestring
2015-11-18 02:03:25 +03:00
, containers
2016-02-27 01:56:38 +03:00
, directory
, filepath
2015-12-01 00:00:34 +03:00
, mtl
2015-12-15 19:47:52 +03:00
, text >= 1.2.1.3
, text-icu
2015-12-17 22:49:28 +03:00
, tree-sitter-parsers
2015-12-24 06:35:55 +03:00
, vector
2015-11-18 01:44:16 +03:00
default-language: Haskell2010
default-extensions: DeriveFunctor, DeriveFoldable, DeriveTraversable, DeriveGeneric, OverloadedStrings
2016-02-14 01:16:49 +03:00
ghc-options: -Wall -fno-warn-name-shadowing -O2 -threaded -fprof-auto "-with-rtsopts=-N -p -s -h -i0.1" -j
2015-11-18 01:44:16 +03:00
test-suite semantic-diff-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
2016-02-28 22:05:19 +03:00
other-modules: AlignmentSpec
, ArbitraryTerm
2016-02-16 20:33:41 +03:00
, CorpusSpec
, InterpreterSpec
, OrderedMapSpec
, PatchOutputSpec
, TermSpec
2015-11-18 01:44:16 +03:00
build-depends: base
2016-02-17 00:38:31 +03:00
, bytestring
2015-12-04 17:16:01 +03:00
, containers
2016-02-18 01:42:27 +03:00
, deepseq
2016-02-17 00:38:31 +03:00
, filepath
, Glob
2015-12-15 22:53:03 +03:00
, hspec >= 2.1.10
, QuickCheck >= 2.8.1
, quickcheck-text
2015-12-04 17:15:54 +03:00
, semantic-diff
2015-12-15 22:53:03 +03:00
, text >= 1.2.1.3
2016-02-17 00:45:49 +03:00
if os(darwin)
ghc-options: -threaded -rtsopts -with-rtsopts=-N -j
2016-02-17 00:45:49 +03:00
else
ghc-options: -threaded -rtsopts -with-rtsopts=-N -j -pgml=script/g++
2015-11-18 01:44:16 +03:00
default-language: Haskell2010
default-extensions: DeriveGeneric, OverloadedStrings
2016-02-17 00:38:31 +03:00
if os(darwin)
extra-libraries: stdc++ icuuc icudata icui18n
if os(darwin)
extra-lib-dirs: /usr/local/opt/icu4c/lib
if os(darwin)
include-dirs: /usr/local/opt/icu4c/include
2015-11-18 01:44:16 +03:00
source-repository head
type: git
2015-11-20 19:20:59 +03:00
location: https://github.com/github/semantic-diff