1
1
mirror of https://github.com/github/semantic.git synced 2024-12-01 00:33:59 +03:00
semantic/semantic-diff.cabal
2016-02-26 19:07:04 -07:00

128 lines
4.4 KiB
Plaintext

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
maintainer: rob.rix@github.com
copyright: 2016 GitHub
category: Web
build-type: Custom
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Diff
, Syntax
, Operation
, Algorithm
, Diffing
, DiffOutput
, Interpreter
, Language
, Line
, Row
, Data.OrderedMap
, Patch
, Renderer
, Renderer.Patch
, Renderer.Split
, SES
, Category
, Term
, Range
, Parser
, TreeSitter
, Source
, Control.Monad.Free
, Control.Comonad.Cofree
, Data.Bifunctor.Join
, Data.Option
build-depends: base >= 4.8 && < 5
, blaze-html
, blaze-markup
, bytestring
, c-storable-deriving
, containers
, directory
, filepath
, mtl
, text >= 1.2.1.3
, text-icu
, tree-sitter-parsers
, vector
default-language: Haskell2010
default-extensions: DeriveFunctor, DeriveFoldable, DeriveTraversable, DeriveGeneric, OverloadedStrings
ghc-options: -Wall -fno-warn-name-shadowing -O2 -threaded -fprof-auto "-with-rtsopts=-N -p -s -h -i0.1" -j
executable semantic-diff
hs-source-dirs: app
main-is: SemanticDiff.hs
if os(darwin)
ghc-options: -threaded -rtsopts -with-rtsopts=-N -static -j
else
ghc-options: -threaded -rtsopts -with-rtsopts=-N -static -j -pgml=script/g++
cc-options: -DU_STATIC_IMPLEMENTATION=1
cpp-options: -DU_STATIC_IMPLEMENTATION=1
build-depends: base
, bytestring
, containers
, directory
, filepath
, optparse-applicative
, semantic-diff
, text >= 1.2.1.3
, text-icu
, gitlib
, gitlib-libgit2
, tagged
, mtl
default-language: Haskell2010
default-extensions: OverloadedStrings
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
test-suite semantic-diff-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: ArbitraryTerm
, CorpusSpec
, InterpreterSpec
, OrderedMapSpec
, PatchOutputSpec
, SplitSpec
, TermSpec
build-depends: base
, bytestring
, containers
, deepseq
, filepath
, Glob
, hspec >= 2.1.10
, QuickCheck >= 2.8.1
, semantic-diff
, text >= 1.2.1.3
, quickcheck-text
if os(darwin)
ghc-options: -threaded -rtsopts -with-rtsopts=-N -j
else
ghc-options: -threaded -rtsopts -with-rtsopts=-N -j -pgml=script/g++
default-language: Haskell2010
default-extensions: DeriveGeneric, OverloadedStrings
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
source-repository head
type: git
location: https://github.com/github/semantic-diff