Skip to content

Commit 5560e0a

Browse files
committed
updated bounds
1 parent 0ca1f97 commit 5560e0a

File tree

5 files changed

+18
-40
lines changed

5 files changed

+18
-40
lines changed

cryptonite-0.21.nix

Lines changed: 0 additions & 19 deletions
This file was deleted.

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
}:
77
mkDerivation {
88
pname = "servant-auth-cookie";
9-
version = "0.4.3.1";
9+
version = "0.4.3.2";
1010
src = ./.;
1111
isLibrary = true;
1212
isExecutable = true;

servant-auth-cookie.cabal

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: servant-auth-cookie
2-
version: 0.4.3.1
2+
version: 0.4.3.2
33
synopsis: Authentication via encrypted cookies
44
description: Authentication via encrypted client-side cookies,
55
inspired by client-session library by Michael Snoyman and based on
@@ -42,16 +42,16 @@ library
4242
, bytestring
4343
, cereal >= 0.5 && < 0.6
4444
, cookie >= 0.4.1 && < 0.5
45-
, cryptonite >= 0.14 && <= 0.21
45+
, cryptonite >= 0.14 && < 0.22
4646
, data-default
4747
, exceptions >= 0.8 && < 0.9
4848
, http-types >= 0.9 && < 0.10
49-
, memory >= 0.11 && <= 0.14.1
49+
, memory >= 0.11 && < 0.15
5050
, mtl >= 2.0 && < 3.0
51-
, servant >= 0.5 && < 0.10
52-
, servant-server >= 0.5 && < 0.10
51+
, servant >= 0.5 && < 0.11
52+
, servant-server >= 0.5 && < 0.11
5353
, tagged == 0.8.*
54-
, time >= 1.5 && <= 1.7.0.1
54+
, time >= 1.5 && < 1.8
5555
, transformers >= 0.4 && < 0.6
5656
, wai >= 3.0 && < 3.3
5757

@@ -84,13 +84,13 @@ test-suite tests
8484
, QuickCheck >= 2.4 && < 3.0
8585
, bytestring
8686
, cereal >= 0.5 && < 0.6
87-
, cryptonite >= 0.14 && <= 0.21
87+
, cryptonite >= 0.14 && < 0.22
8888
, data-default
8989
, deepseq >= 1.3 && < 1.5
9090
, hspec >= 2.0 && < 3.0
9191
, servant-auth-cookie
92-
, servant-server >= 0.5 && < 0.10
93-
, time >= 1.5 && <= 1.7.0.1
92+
, servant-server >= 0.5 && < 0.11
93+
, time >= 1.5 && < 1.8
9494
if !impl(ghc >= 7.8)
9595
build-depends: tagged == 0.8.*
9696
default-language: Haskell2010
@@ -103,19 +103,19 @@ executable example
103103
if flag(build-examples)
104104
build-depends: base >= 4.7 && < 5.0
105105
, base-compat >= 0.9.1 && <0.10
106-
, blaze-html >= 0.8 && <= 0.9.0.1
107-
, blaze-markup >= 0.7 && <= 0.8
106+
, blaze-html >= 0.8 && < 0.10
107+
, blaze-markup >= 0.7 && < 0.9
108108
, bytestring
109109
, cereal >= 0.5 && < 0.6
110-
, cryptonite >= 0.14 && <= 0.21
110+
, cryptonite >= 0.14 && < 0.22
111111
, data-default
112112
, exceptions
113113
, http-media
114114
, mtl >= 2.0 && < 3.0
115-
, servant >= 0.5 && < 0.10
115+
, servant >= 0.5 && < 0.11
116116
, servant-auth-cookie
117117
, servant-blaze >= 0.5 && < 0.10
118-
, servant-server >= 0.5 && < 0.10
118+
, servant-server >= 0.5 && < 0.11
119119
, text
120120
, transformers >= 0.4 && < 0.6
121121
, wai >= 3.0 && < 3.3
@@ -150,9 +150,9 @@ benchmark bench
150150
build-depends: base >= 4.7 && < 5.0
151151
, bytestring
152152
, criterion >= 0.6.2.1 && < 1.2
153-
, cryptonite >= 0.14 && <= 0.21
153+
, cryptonite >= 0.14 && < 0.22
154154
, servant-auth-cookie
155-
, servant-server >= 0.5 && < 0.10
155+
, servant-server >= 0.5 && < 0.11
156156
if flag(dev)
157157
ghc-options: -Wall -Werror
158158
else

shell-profiling.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ let
1313
enableLibraryProfiling = true;
1414
enableExecutableProfiling = true;
1515
});
16-
cryptonite = self.callPackage ./cryptonite-0.20.nix {};
1716
};
1817
};
1918

shell.nix

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ let
88
else pkgs.haskell.packages.${compiler};
99

1010
haskellPackages_ = haskellPackages.override {
11-
overrides = self: super: {
12-
cryptonite = self.callPackage ./cryptonite-0.21.nix {};
13-
};
11+
overrides = self: super: {};
1412
};
1513

1614
drv = haskellPackages_.callPackage ./default.nix {};

0 commit comments

Comments
 (0)