blob: b38fc5c707b8bab3d539de47d6a9c7fbc0f49f20 [file] [log] [blame]
Bryan Duxbury23f23482010-07-28 18:23:22 +00001--
2-- Licensed to the Apache Software Foundation (ASF) under one
3-- or more contributor license agreements. See the NOTICE file
4-- distributed with this work for additional information
5-- regarding copyright ownership. The ASF licenses this file
6-- to you under the Apache License, Version 2.0 (the
7-- "License"); you may not use this file except in compliance
8-- with the License. You may obtain a copy of the License at
9--
10-- http://www.apache.org/licenses/LICENSE-2.0
11--
12-- Unless required by applicable law or agreed to in writing,
13-- software distributed under the License is distributed on an
14-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15-- KIND, either express or implied. See the License for the
16-- specific language governing permissions and limitations
17-- under the License.
18--
19
David Reiss68f8c382010-01-11 19:13:18 +000020Name: ThriftTutorial
21Version: 0.1.0
Roger Meier303eb1b2014-05-14 00:49:41 +020022Cabal-Version: >= 1.4
23License: OtherLicense
David Reiss68f8c382010-01-11 19:13:18 +000024Category: Foreign
25Build-Type: Simple
26Synopsis: Thrift Tutorial library package
Roger Meier303eb1b2014-05-14 00:49:41 +020027Homepage: http://thrift.apache.org
28Bug-Reports: https://issues.apache.org/jira/browse/THRIFT
29Maintainer: dev@thrift.apache.org
30License-File: ../../LICENSE
31
32Description:
33 Haskell tutorial for the Apache Thrift RPC system. Requires the use of the thrift code generator.
David Reiss68f8c382010-01-11 19:13:18 +000034
35Executable HaskellServer
36 Main-is: HaskellServer.hs
37 Hs-Source-Dirs:
Roger Meier303eb1b2014-05-14 00:49:41 +020038 ., gen-hs/
David Reiss68f8c382010-01-11 19:13:18 +000039 Build-Depends:
Noam Zilbersteinaf5d64a2014-07-31 15:44:13 -070040 base >= 4, base < 5, network, ghc-prim, containers, thrift, vector, unordered-containers, text, hashable, bytestring, QuickCheck
David Reiss68f8c382010-01-11 19:13:18 +000041 Extensions:
Roger Meier303eb1b2014-05-14 00:49:41 +020042 DeriveDataTypeable,
43 ExistentialQuantification,
44 FlexibleInstances,
45 KindSignatures,
46 MagicHash,
47 RankNTypes,
48 ScopedTypeVariables,
49 TypeSynonymInstances
David Reiss68f8c382010-01-11 19:13:18 +000050
51Executable HaskellClient
52 Main-is: HaskellClient.hs
53 Hs-Source-Dirs:
Roger Meier303eb1b2014-05-14 00:49:41 +020054 ., gen-hs/
David Reiss68f8c382010-01-11 19:13:18 +000055 Build-Depends:
Noam Zilbersteinaf5d64a2014-07-31 15:44:13 -070056 base >= 4, base < 5, network, ghc-prim, containers, thrift, vector, QuickCheck
David Reiss68f8c382010-01-11 19:13:18 +000057 Extensions:
Roger Meier303eb1b2014-05-14 00:49:41 +020058 DeriveDataTypeable,
59 ExistentialQuantification,
60 FlexibleInstances,
61 KindSignatures,
62 MagicHash,
63 RankNTypes,
64 ScopedTypeVariables,
65 TypeSynonymInstances