-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Tristan Cacqueray <[email protected]> Co-authored-by: Gabriele Sales <[email protected]>
- Loading branch information
1 parent
6323af1
commit a767ef6
Showing
97 changed files
with
336 additions
and
2,972 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ author: Edsko de Vries | |
maintainer: [email protected] | ||
category: Database | ||
extra-source-files: CHANGELOG.md | ||
tested-with: GHC ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.5 | ||
tested-with: GHC ==8.10.7 || ==9.2.8 || ==9.4.8 || ==9.6.4 | ||
|
||
source-repository head | ||
type: git | ||
|
@@ -31,7 +31,7 @@ library | |
Data.Record.Beam.ZipDatabase | ||
Data.Record.Beam.ZipTables | ||
build-depends: | ||
base >= 4.13 && < 4.18 | ||
base >= 4.14 && < 4.19 | ||
, beam-core >= 0.9 | ||
, large-generics | ||
, microlens | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
cabal-version: 2.4 | ||
name: large-anon | ||
version: 0.3.0 | ||
version: 0.3.1 | ||
synopsis: Scalable anonymous records | ||
description: The @large-anon@ package provides support for anonymous | ||
records in Haskell, with a focus on compile-time (and | ||
|
@@ -12,7 +12,7 @@ maintainer: [email protected] | |
category: Records | ||
extra-source-files: CHANGELOG.md | ||
test/Test/Sanity/RebindableSyntax/Tests.hs | ||
tested-with: GHC ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.5 | ||
tested-with: GHC ==8.10.7 || ==9.2.8 || ==9.4.8 || ==9.6.4 | ||
|
||
library | ||
exposed-modules: | ||
|
@@ -70,15 +70,15 @@ library | |
Data.Record.Anon.Internal.Plugin.Source.Options | ||
|
||
build-depends: | ||
base >= 4.13 && < 4.18 | ||
, aeson >= 1.4.4 && < 2.2 | ||
, containers >= 0.6.2 && < 0.7 | ||
, deepseq >= 1.4.4 && < 1.5 | ||
, ghc-tcplugin-api >= 0.10 && < 0.11 | ||
base >= 4.14 && < 4.19 | ||
, aeson >= 1.4.4 && < 2.3 | ||
, containers >= 0.6.2 && < 0.8 | ||
, deepseq >= 1.4.4 && < 1.6 | ||
, ghc-tcplugin-api >= 0.11 && < 0.12 | ||
, hashable >= 1.3 && < 1.5 | ||
, mtl >= 2.2.1 && < 2.3 | ||
, mtl >= 2.2.1 && < 2.4 | ||
, optics-core >= 0.3 && < 0.5 | ||
, primitive >= 0.8 && < 0.9 | ||
, primitive >= 0.8 && < 0.10 | ||
, record-hasfield >= 1.0 && < 1.1 | ||
, sop-core >= 0.5 && < 0.6 | ||
, syb >= 0.7 && < 0.8 | ||
|
@@ -184,6 +184,7 @@ test-suite test-large-anon | |
-Wredundant-constraints | ||
-Wno-unticked-promoted-constructors | ||
-fno-show-valid-hole-fits | ||
-dcore-lint | ||
|
||
-- Not sure why, but ghc warns about record-hasfield being unused, | ||
-- despite it actually being required. So for now we just disable this check. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.