diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | krpc.cabal | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -7,7 +7,7 @@ but might be used anywhere else. | |||
7 | 7 | ||
8 | KRPC basically consisting of bencoded dictionaries sent over UDP. This | 8 | KRPC basically consisting of bencoded dictionaries sent over UDP. This |
9 | implementation provides extra safiety by separation of procedure | 9 | implementation provides extra safiety by separation of procedure |
10 | signature | implementation and baking procedure type in host | 10 | signature and implementation and baking procedure type in host |
11 | language, thus it's hard to shoot yourself in the foot accidently. | 11 | language, thus it's hard to shoot yourself in the foot accidently. |
12 | 12 | ||
13 | See bittorrent DHT [specification][spec] for detailed protocol | 13 | See bittorrent DHT [specification][spec] for detailed protocol |
@@ -5,7 +5,7 @@ license-file: LICENSE | |||
5 | author: Sam T. | 5 | author: Sam T. |
6 | maintainer: Sam T. <pxqr.sta@gmail.com> | 6 | maintainer: Sam T. <pxqr.sta@gmail.com> |
7 | copyright: (c) 2013, Sam T. | 7 | copyright: (c) 2013, Sam T. |
8 | category: Network, Remote | 8 | category: Network |
9 | build-type: Simple | 9 | build-type: Simple |
10 | cabal-version: >=1.8 | 10 | cabal-version: >=1.8 |
11 | homepage: https://github.com/pxqr/krpc | 11 | homepage: https://github.com/pxqr/krpc |
@@ -15,7 +15,7 @@ description: KRPC remote procedure call protocol implementation. | |||
15 | 15 | ||
16 | source-repository head | 16 | source-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 | ||
81 | benchmark bench-client | 81 | benchmark bench-client |
82 | type: exitcode-stdio-1.0 | 82 | type: exitcode-stdio-1.0 |