forked from mcfilib/ruby-marshal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruby-marshal.cabal
71 lines (67 loc) · 1.53 KB
/
ruby-marshal.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
71
name: ruby-marshal
version: 0.1.2
synopsis: Parse a subset of Ruby objects serialised with Marshal.dump.
description: Parse a subset of Ruby objects serialised with Marshal.dump.
homepage: https://github.com/filib/ruby-marshal
license: MIT
license-file: LICENSE
author: Philip Cunningham
maintainer: hello@filib.io
category: Data
build-type: Simple
tested-with: GHC == 7.8, GHC == 7.10
cabal-version: >= 1.10
extra-source-files: CHANGELOG.md
Source-repository head
type: git
location: https://github.com/filib/ruby-marshal
flag developer
default: False
library
if flag(developer)
ghc-options:
-fprof-auto
-rtsopts
hs-source-dirs:
src
build-depends:
base >= 4.7 && <= 5
, cereal >= 0.4.0 && < 0.5.5
, bytestring >= 0.9.0 && <= 0.12.0
, containers >= 0.5.0 && <= 0.6.0
, string-conv >= 0.1 && <= 0.2
, mtl >= 2.1.0 && <= 2.3.0
, vector >= 0.10.0 && < 0.12.1
default-language:
Haskell2010
exposed-modules:
Data.Ruby.Marshal
, Data.Ruby.Marshal.Encoding
, Data.Ruby.Marshal.Get
, Data.Ruby.Marshal.Int
, Data.Ruby.Marshal.Monad
, Data.Ruby.Marshal.RubyObject
, Data.Ruby.Marshal.Types
test-suite spec
ghc-options:
-Wall
hs-source-dirs:
src, test
build-depends:
ruby-marshal -any
, base
, bytestring
, cereal
, containers
, hspec
, mtl
, string-conv
, vector
default-language:
Haskell2010
other-modules:
Spec
main-is:
Spec.hs
type:
exitcode-stdio-1.0