1
1
mirror of https://github.com/github/semantic.git synced 2024-11-23 16:37:50 +03:00
semantic/semantic-diff.cabal

145 lines
5.2 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
, Data.Bifunctor.Join.Arbitrary
, Data.Functor.Both
, Data.RandomWalkSimilarity
, Data.RandomWalkSimilarity.Arbitrary
2016-02-28 21:36:32 +03:00
, Data.OrderedMap
2016-06-16 18:30:11 +03:00
, Data.Record
, Data.Record.Arbitrary
, Data.These.Arbitrary
2016-02-28 21:36:32 +03:00
, Diff
, Diff.Arbitrary
, Diffing
2016-02-27 01:56:38 +03:00
, DiffOutput
2016-03-31 00:12:39 +03:00
, Info
2015-11-18 03:25:39 +03:00
, Interpreter
2016-02-11 01:30:14 +03:00
, Language
2016-02-28 21:36:32 +03:00
, Operation
, Parser
2015-11-18 05:21:51 +03:00
, Patch
, Patch.Arbitrary
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
2016-05-18 19:01:16 +03:00
, Renderer.Summary
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
2016-06-01 16:03:15 +03:00
, Term.Arbitrary
2015-12-17 20:54:27 +03:00
, TreeSitter
2016-04-25 18:46:10 +03:00
, DiffSummary
, Prologue
2016-03-01 04:52:30 +03:00
build-depends: aeson
, base >= 4.8 && < 5
2016-03-18 03:07:28 +03:00
, bifunctors
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
2016-06-22 00:49:34 +03:00
, dlist
, filepath
2016-06-22 00:24:18 +03:00
, hashable
2015-12-01 00:00:34 +03:00
, mtl
2016-06-22 01:48:44 +03:00
, MonadRandom
, pointed
2016-06-01 16:18:31 +03:00
, QuickCheck >= 2.8.1
, quickcheck-text
, semigroups
2015-12-15 19:47:52 +03:00
, text >= 1.2.1.3
, text-icu
, these
2015-12-17 22:49:28 +03:00
, tree-sitter-parsers
2015-12-24 06:35:55 +03:00
, vector
2016-04-27 00:31:05 +03:00
, recursion-schemes
, free
2016-05-03 22:50:38 +03:00
, comonad
, protolude
2015-11-18 01:44:16 +03:00
default-language: Haskell2010
2016-06-23 23:19:51 +03:00
default-extensions: DeriveFunctor, DeriveFoldable, DeriveTraversable, DeriveGeneric, FlexibleContexts, FlexibleInstances, OverloadedStrings, NoImplicitPrelude, RecordWildCards
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
2016-05-31 16:25:00 +03:00
benchmark semantic-diff-bench
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: bench
build-depends: base
2016-05-31 17:58:39 +03:00
, bifunctors
2016-05-31 16:25:00 +03:00
, criterion
, QuickCheck >= 2.8.1
, quickcheck-text
, recursion-schemes
2016-05-31 16:25:00 +03:00
, semantic-diff
2016-05-31 17:58:39 +03:00
, these
2016-05-31 16:25:00 +03:00
ghc-options: -threaded -rtsopts -with-rtsopts=-N -j -O2 -static
2016-05-31 17:37:14 +03:00
default-language: Haskell2010
2016-05-31 16:25:00 +03:00
default-extensions: OverloadedStrings, NoImplicitPrelude
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
2016-06-23 16:51:47 +03:00
, Data.RandomWalkSimilarity.Spec
2016-06-22 17:41:13 +03:00
, DiffSummarySpec
, InterpreterSpec
, OrderedMapSpec
, PatchOutputSpec
, TermSpec
2015-11-18 01:44:16 +03:00
build-depends: base
2016-03-22 01:53:57 +03:00
, bifunctors
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
, dlist
2016-02-17 00:38:31 +03:00
, filepath
, Glob
2015-12-15 22:53:03 +03:00
, hspec >= 2.1.10
2016-05-21 07:07:35 +03:00
, mtl
2015-12-15 22:53:03 +03:00
, 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
, these
2016-05-04 22:15:25 +03:00
, free
, recursion-schemes >= 4.1
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: DeriveFunctor, DeriveGeneric, FlexibleInstances, OverloadedStrings, NoImplicitPrelude, RecordWildCards
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