Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 20 additions & 9 deletions tree-diff.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
cabal-version: 2.2
name: tree-diff
version: 0.3.4
x-revision: 2
version: 0.3.4.1
synopsis: Diffing of (expression) trees.
category: Data, Testing
description:
Expand Down Expand Up @@ -53,8 +52,9 @@ tested-with:
|| ==9.4.8
|| ==9.6.7
|| ==9.8.4
|| ==9.10.2
|| ==9.10.3
|| ==9.12.2
|| ==9.14.1

extra-source-files:
fixtures/exfoo.expr
Expand All @@ -67,6 +67,11 @@ source-repository head
type: git
location: https://github.com/phadej/tree-diff.git

flag base-ge-4-17
description: @base >=4.17@ (GHC-9.4)
default: True
manual: False

library
exposed-modules:
Data.TreeDiff
Expand All @@ -82,14 +87,14 @@ library

-- GHC boot libraries
build-depends:
, base >=4.12.0.0 && <4.22
, base >=4.12.0.0 && <4.23
, bytestring ^>=0.10.8.2 || ^>=0.11.0.0 || ^>=0.12.0.2
, containers ^>=0.6.0.1 || ^>=0.7
, containers ^>=0.6.0.1 || ^>=0.7 || ^>=0.8
, deepseq ^>=1.4.4.0 || ^>=1.5.0.0
, parsec ^>=3.1.13.0
, pretty ^>=1.1.1.0
, text ^>=1.2.3.0 || ^>=2.0 || ^>=2.1
, time ^>=1.8.0.2 || ^>=1.9.3 || ^>=1.10 || ^>=1.11 || ^>=1.12 || ^>=1.14
, time ^>=1.8.0.2 || ^>=1.9.3 || ^>=1.10 || ^>=1.11 || ^>=1.12 || ^>=1.14 || ^>=1.16

build-depends:
, aeson ^>=2.2.0.0
Expand All @@ -98,7 +103,7 @@ library
, hashable ^>=1.4.4.0 || ^>=1.5.0.0
, parsers ^>=0.12.11
, primitive ^>=0.9.0.0
, QuickCheck ^>=2.14.2 || ^>=2.15 || ^>=2.16.0.0
, QuickCheck ^>=2.14.2 || ^>=2.15 || ^>=2.16.0.0 || ^>=2.18.0.0
, scientific ^>=0.3.8.0
, semialign ^>=1.3.1
, strict ^>=0.5
Expand All @@ -108,8 +113,8 @@ library
, uuid-types ^>=1.0.6
, vector ^>=0.13.1.0

if (impl(ghc >=8) && !impl(ghc >=9.4))
build-depends: data-array-byte ^>=0.1.0.1
if !flag(base-ge-4-17)
build-depends: data-array-byte >=0.1.0.1 && <0.2

other-extensions:
CPP
Expand All @@ -124,6 +129,12 @@ library
hs-source-dirs: src
default-language: Haskell2010

if flag(base-ge-4-17)
build-depends: base >=4.17

else
build-depends: base <4.17

test-suite tree-diff-test
default-language: Haskell2010
type: exitcode-stdio-1.0
Expand Down
Loading