This commit is contained in:
Oliver Charles 2020-01-17 13:27:35 +00:00
parent 42930da5a1
commit a69a9cb56d
3 changed files with 41 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/dist-newstyle

5
CHANGELOG.md Normal file
View File

@ -0,0 +1,5 @@
# Revision history for rel82
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.

35
rel8.cabal Normal file
View File

@ -0,0 +1,35 @@
cabal-version: >=1.10
name: rel8
version: 0.1.0.0
license-file: LICENSE
author: Oliver Charles
maintainer: ollie@ocharles.org.uk
build-type: Simple
extra-source-files: CHANGELOG.md
library
build-depends: base >=4.12 && <4.13
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: src
exposed-modules: Rel8.PublicFacing
other-modules:
Rel8.Column
Rel8.ColumnSchema
Rel8.DBEq
Rel8.EqTable
Rel8.Expr
Rel8.FromRow
Rel8.HigherKinded
Rel8.MaybeTable
Rel8.MonadQuery
Rel8.MonadQuery
Rel8.Nest
Rel8.Query
Rel8.Query
Rel8.Rewrite
Rel8.Table
Rel8.TableSchema
Rel8.Tests
Rel8.Top
Rel8.ZipLeaves