-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrails-session.cabal
70 lines (67 loc) · 2.5 KB
/
rails-session.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: rails-session
version: 0.1.4.1
synopsis: Decrypt Ruby on Rails sessions in Haskell
description: Please see README.md
homepage: http://github.com/iconnect/rails-session#readme
license: BSD3
license-file: LICENSE
author: Philip Cunningham & Alfredo di Napoli
maintainer: philip@irisconnect.co.uk
copyright: 2016-2017 Philip Cunningham & Alfredo di Napoli
category: Web
build-type: Simple
cabal-version: >=1.10
extra-source-files: CHANGELOG.md
tested-with: GHC ==9.4.8 || ==9.6.4
data-files: test/Rails3 test/Rails4 test/Rails7
Source-repository head
type: git
location: https://github.com/iconnect/rails-session
library
hs-source-dirs: src
exposed-modules: Web.Rails.Session.Types
, Web.Rails4.Session
, Web.Rails3.Session
, Web.Rails7.Session
build-depends: aeson <= 3.0
, base >= 4.7 && < 5
, base-compat >= 0.8.2
, base16-bytestring >= 1.0.1.0
, base64-bytestring >= 1.0.0.1
, bytestring
, bytestring >= 0.10.6.0
, containers
, crypton >= 1.0.0
, http-types >= 0.8.6
, lens
, lens-aeson
, memory
, pbkdf >= 1.1.1.1
, ruby-marshal >= 0.1.1
, string-conv >= 0.1
, text < 3
, vector >= 0.10.12.3
if impl(ghc < 8.0)
build-depends: semigroups
default-language: GHC2021
test-suite specs
ghc-options: -Wall
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: aeson
, aeson-qq
, base
, bytestring
, filepath
, hspec
, rails-session
, ruby-marshal
, semigroups
, tasty
, tasty-hspec
, text
, transformers
, vector
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: GHC2021