msgpack/haskell/msgpack.cabal

51 lines
1.4 KiB
Plaintext
Raw Normal View History

2010-09-06 01:32:00 +09:00
Name: msgpack
2011-11-16 14:49:01 +09:00
Version: 0.6.1.3
2011-03-09 18:05:04 +09:00
Synopsis: A Haskell implementation of MessagePack
2010-04-18 02:17:49 +09:00
Description:
2011-03-09 18:05:04 +09:00
A Haskell implementation of MessagePack <http://msgpack.org/>
2010-04-18 02:17:49 +09:00
2010-09-06 01:32:00 +09:00
License: BSD3
License-File: LICENSE
2011-03-10 22:17:15 +09:00
Copyright: Copyright (c) 2009-2011, Hideyuki Tanaka
2010-09-06 01:32:00 +09:00
Category: Data
Author: Hideyuki Tanaka
Maintainer: Hideyuki Tanaka <tanaka.hideyuki@gmail.com>
2010-09-06 14:03:47 +09:00
Homepage: http://github.com/msgpack/msgpack
2010-09-06 01:32:00 +09:00
Stability: Experimental
2010-09-08 13:36:45 +09:00
Cabal-Version: >= 1.6
2010-09-06 01:32:00 +09:00
Build-Type: Simple
Extra-source-files:
test/Test.hs
test/UserData.hs
2010-09-06 01:32:00 +09:00
Library
Build-depends: base >=4 && <5,
2011-08-30 13:58:16 -07:00
mtl >= 2.0 && < 2.1,
2010-09-06 01:32:00 +09:00
bytestring >= 0.9 && < 0.10,
text >= 0.11 && < 0.12,
2011-08-30 13:58:16 -07:00
vector >= 0.7 && < 0.10,
attoparsec >= 0.8 && < 0.10,
2010-09-06 01:32:00 +09:00
binary >= 0.5.0 && < 0.5.1,
data-binary-ieee754 >= 0.4 && < 0.5,
2011-11-16 14:49:01 +09:00
deepseq >= 1.1 && <1.3,
template-haskell >= 2.4 && < 2.7
2010-09-08 13:36:45 +09:00
Ghc-options: -Wall
2010-09-06 01:32:00 +09:00
Hs-source-dirs: src
2010-04-18 02:17:49 +09:00
Exposed-modules:
Data.MessagePack
Data.MessagePack.Assoc
2010-09-23 00:04:34 +09:00
Data.MessagePack.Pack
Data.MessagePack.Unpack
2010-09-06 01:32:00 +09:00
Data.MessagePack.Object
2010-09-23 00:04:34 +09:00
Data.MessagePack.Derive
2010-09-08 13:36:45 +09:00
Other-modules:
Data.MessagePack.Internal.Utf8
2010-09-08 13:36:45 +09:00
Source-repository head
Type: git
Location: git://github.com/msgpack/msgpack.git