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

97 lines
3.0 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
2015-11-18 01:44:16 +03:00
copyright: 2015 GitHub
category: Web
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: src
2015-11-18 02:03:25 +03:00
exposed-modules: Diff
, Syntax
2015-11-18 02:14:57 +03:00
, Operation
2015-11-18 03:20:52 +03:00
, Algorithm
2015-11-18 03:25:39 +03:00
, Interpreter
2015-12-12 01:04:24 +03:00
, OrderedMap
2015-11-18 05:21:51 +03:00
, Patch
2015-11-18 18:09:49 +03:00
, SES
2015-11-18 22:23:28 +03:00
, Categorizable
2015-11-18 22:27:09 +03:00
, Term
2015-12-03 05:40:34 +03:00
, Range
2015-12-03 19:37:18 +03:00
, Split
, Unified
2015-11-18 02:03:25 +03:00
build-depends: base >= 4.8 && < 5
, containers
, free
2015-12-01 00:00:34 +03:00
, mtl
, rainbow
, bytestring
2015-12-07 20:21:06 +03:00
, blaze-html
2015-11-18 01:44:16 +03:00
default-language: Haskell2010
default-extensions: DeriveFunctor, FlexibleInstances, DeriveFoldable, DeriveTraversable
ghc-options: -Wall -fno-warn-name-shadowing
2015-11-18 01:44:16 +03:00
executable semantic-diff-exe
hs-source-dirs: app
main-is: Main.hs
other-modules: TreeSitter
2015-12-17 00:21:49 +03:00
, Parsers
2015-11-18 01:44:16 +03:00
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, containers
, free
2015-11-18 01:44:16 +03:00
, semantic-diff
2015-11-27 20:41:30 +03:00
, bytestring
2015-12-01 19:00:58 +03:00
, optparse-applicative
2015-12-03 23:10:49 +03:00
, filepath
2015-12-16 09:18:43 +03:00
, directory
2015-11-18 01:44:16 +03:00
default-language: Haskell2010
extra-libraries: bridge
2015-12-07 19:17:35 +03:00
extra-lib-dirs: .
2015-11-18 01:44:16 +03:00
2015-12-11 07:15:24 +03:00
executable semantic-diff-profile
hs-source-dirs: app
main-is: Main.hs
other-modules: TreeSitter
2015-12-17 00:21:49 +03:00
, Parsers
2015-12-11 07:15:24 +03:00
ghc-options: -O2
-threaded
-fprof-auto
"-with-rtsopts=-N -p -s -h -i0.1"
build-depends: base
, containers
, free
, semantic-diff
, bytestring
, optparse-applicative
, filepath
2015-12-16 09:18:43 +03:00
, directory
2015-12-11 07:15:24 +03:00
default-language: Haskell2010
extra-libraries: bridge
extra-lib-dirs: .
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
2015-12-15 01:42:57 +03:00
other-modules: OrderedMapSpec
2015-11-18 01:44:16 +03:00
build-depends: base
2015-12-04 17:16:01 +03:00
, containers
2015-12-04 18:17:26 +03:00
, free
2015-12-03 19:38:43 +03:00
, hspec
2015-12-04 17:15:54 +03:00
, semantic-diff
2015-12-11 07:38:01 +03:00
, QuickCheck
2015-11-18 01:44:16 +03:00
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
2015-12-12 00:07:30 +03:00
default-extensions: DeriveGeneric
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