summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam T <pxqr.sta@gmail.com>2013-06-09 22:35:18 +0400
committerSam T <pxqr.sta@gmail.com>2013-06-09 22:35:18 +0400
commit5538be6787e3dc7ce149b2a5c65339cb7c4cb02f (patch)
tree80c0edbe89f73624023af4bd1f35bcce0ad46e88
parent3d799406a530231807b13bf893328aa3ef13ea44 (diff)
~ Prepare for Hackage.
-rw-r--r--README.md2
-rw-r--r--krpc.cabal6
2 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 88731915..9b34c81c 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ but might be used anywhere else.
7 7
8KRPC basically consisting of bencoded dictionaries sent over UDP. This 8KRPC basically consisting of bencoded dictionaries sent over UDP. This
9implementation provides extra safiety by separation of procedure 9implementation provides extra safiety by separation of procedure
10signature | implementation and baking procedure type in host 10signature and implementation and baking procedure type in host
11language, thus it's hard to shoot yourself in the foot accidently. 11language, thus it's hard to shoot yourself in the foot accidently.
12 12
13See bittorrent DHT [specification][spec] for detailed protocol 13See bittorrent DHT [specification][spec] for detailed protocol
diff --git a/krpc.cabal b/krpc.cabal
index 474778ad..d9dc8880 100644
--- a/krpc.cabal
+++ b/krpc.cabal
@@ -5,7 +5,7 @@ license-file: LICENSE
5author: Sam T. 5author: Sam T.
6maintainer: Sam T. <pxqr.sta@gmail.com> 6maintainer: Sam T. <pxqr.sta@gmail.com>
7copyright: (c) 2013, Sam T. 7copyright: (c) 2013, Sam T.
8category: Network, Remote 8category: Network
9build-type: Simple 9build-type: Simple
10cabal-version: >=1.8 10cabal-version: >=1.8
11homepage: https://github.com/pxqr/krpc 11homepage: https://github.com/pxqr/krpc
@@ -15,7 +15,7 @@ description: KRPC remote procedure call protocol implementation.
15 15
16source-repository head 16source-repository head
17 type: git 17 type: git
18 location: https://github.com/pxqr/krpc.git 18 location: git://github.com/pxqr/krpc.git
19 19
20 20
21 21
@@ -76,7 +76,7 @@ executable bench-server
76 main-is: Server.hs 76 main-is: Server.hs
77 build-depends: base == 4.*, krpc, bytestring 77 build-depends: base == 4.*, krpc, bytestring
78 hs-source-dirs: bench 78 hs-source-dirs: bench
79 ghc-options: -O2 -fforce-recomp 79 ghc-options: -fforce-recomp
80 80
81benchmark bench-client 81benchmark bench-client
82 type: exitcode-stdio-1.0 82 type: exitcode-stdio-1.0