Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions biscuit-servant/biscuit-servant.cabal
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cabal-version: 2.0
cabal-version: 3.0

name: biscuit-servant
version: 0.4.0.0
Expand All @@ -10,7 +10,7 @@ bug-reports: https://github.com/biscuit-auth/biscuit-haskell/issues
author: Clément Delafargue
maintainer: clement@delafargue.name
copyright: 2021 Clément Delafargue
license: BSD3
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
tested-with: GHC ==9.6.7 || ==9.8.4 || ==9.10.2 || ==9.12.2
Expand All @@ -35,7 +35,7 @@ library
build-depends:
base >= 4.7 && <5,
biscuit-haskell >= 0.4 && < 0.5,
bytestring >= 0.10 && <0.12,
bytestring >= 0.10 && <0.13,
mtl >= 2.2 && < 2.4,
text >= 1.2 && <3,
servant-server >= 0.18 && < 0.21,
Expand Down
6 changes: 3 additions & 3 deletions biscuit-wai/biscuit-wai.cabal
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cabal-version: 2.0
cabal-version: 3.0

name: biscuit-wai
version: 0.1.0.0
Expand All @@ -10,7 +10,7 @@ bug-reports: https://github.com/biscuit-auth/biscuit-haskell/issues
author: Clément Delafargue
maintainer: clement@delafargue.name
copyright: 2021 Clément Delafargue
license: BSD3
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
tested-with: GHC ==8.10.7 || == 9.0.2 || == 9.2.4
Expand All @@ -33,7 +33,7 @@ library
build-depends:
base >= 4.7 && <5,
biscuit-haskell >= 0.4 && < 0.5,
bytestring >= 0.10 && <0.12,
bytestring >= 0.10 && <0.13,
http-types ^>= 0.12,
vault ^>= 0.3,
wai ^>= 3.2
Expand Down
12 changes: 6 additions & 6 deletions biscuit/biscuit-haskell.cabal
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cabal-version: 2.0
cabal-version: 3.0

name: biscuit-haskell
version: 0.4.0.0
Expand All @@ -10,7 +10,7 @@ bug-reports: https://github.com/biscuit-auth/biscuit-haskell/issues
author: Clément Delafargue
maintainer: clement@delafargue.name
copyright: 2021 Clément Delafargue
license: BSD3
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
tested-with: GHC ==9.6.7 || ==9.8.4 || ==9.10.2 || ==9.12.2
Expand Down Expand Up @@ -52,7 +52,7 @@ library
base16 >= 0.3 && <2.0,
bytestring >= 0.10 && <0.13,
text >= 1.2 && <3,
containers >= 0.6 && <0.8,
containers >= 0.6 && <0.9,
crypton ^>= 1.0,
memory >= 0.15 && < 0.19,
template-haskell >= 2.16 && < 2.24,
Expand All @@ -61,12 +61,12 @@ library
mtl >= 2.2 && < 2.4,
parser-combinators >= 1.2 && < 1.4,
protobuf ^>= 0.2,
random >= 1.0 && < 1.3,
random >= 1.0 && < 1.4,
regex-tdfa ^>= 1.3,
th-lift-instances ^>= 0.1,
time ^>= 1.9,
time >= 1.9,
validation-selective >= 0.1 && < 0.3,
megaparsec >= 9.2 && < 9.7
megaparsec >= 9.2 && < 9.8
default-language: Haskell2010

test-suite biscuit-haskell-test
Expand Down
Loading