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

62 lines
2.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
2015-11-26 00:41:26 +03:00
build-type: Simple
2015-11-18 01:44:16 +03:00
-- 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-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-11-20 00:35:06 +03:00
, Unified
2015-11-20 04:39:21 +03:00
, Console
2015-11-18 02:03:25 +03:00
build-depends: base >= 4.8 && < 5
, containers
, free
2015-11-18 01:44:16 +03:00
default-language: Haskell2010
2015-11-25 18:58:37 +03:00
default-extensions: DeriveFunctor, FlexibleInstances, DeriveFoldable, DeriveTraversable
2015-11-18 01:44:16 +03:00
executable semantic-diff-exe
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, containers
, free
2015-11-18 01:44:16 +03:00
, semantic-diff
2015-11-24 21:15:32 +03:00
, c-storable-deriving
2015-11-25 00:40:32 +03:00
, ghc-prim
2015-11-18 01:44:16 +03:00
default-language: Haskell2010
2015-11-24 21:15:35 +03:00
default-extensions: DeriveGeneric, DeriveAnyClass
2015-11-24 20:50:04 +03:00
extra-libraries: runtime
, tree-sitter-c
2015-11-26 00:41:35 +03:00
, bridge
extra-lib-dirs: prototype/External/tree-sitter/out/Release, prototype/External/tree-sitter-c, .
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
build-depends: base
, semantic-diff
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
2015-11-20 19:20:59 +03:00
location: https://github.com/github/semantic-diff