-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update from 94c82833c9dbf155721c95e64273a0357e351e4b
- Loading branch information
1 parent
baec813
commit a28f93d
Showing
27 changed files
with
1,211 additions
and
23 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<!-- Required meta tags --> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<!-- Bootstrap CSS --> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" | ||
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> | ||
<title> | ||
typed-protocols-0.3.0.0 | ||
</title> | ||
<style> | ||
ul.build-depends { | ||
list-style: none; | ||
} | ||
|
||
ul.build-depends li { | ||
display: inline; | ||
} | ||
|
||
ul.build-depends li:not(:last-child):after { | ||
content: ","; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div class="container px-4 py-5"> | ||
<ul class="nav"> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="../../index.html">Home</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="../../all-packages/index.html">All packages</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="../../all-package-versions/index.html">All package versions</a> | ||
</li> | ||
</ul> | ||
<h1 class="py-5"> | ||
typed-protocols-0.3.0.0 | ||
</h1> | ||
<dl class="row class=" px-4 py-5"> | ||
<dt class="col-sm-3">Synopsis</dt> | ||
<dd class="col-sm-9"> | ||
<p>A framework for strongly typed protocols</p> | ||
</dd> | ||
<dt class="col-sm-3">Description</dt> | ||
<dd class="col-sm-9"> | ||
<p></p> | ||
</dd> | ||
<dt class="col-sm-3">Author</dt> | ||
<dd class="col-sm-9"> | ||
<p>Alexander Vieth, Duncan Coutts, Marcin Szamotulski</p> | ||
</dd> | ||
<dt class="col-sm-3">Maintainer</dt> | ||
<dd class="col-sm-9"> | ||
<p>[email protected], [email protected], [email protected]</p> | ||
</dd> | ||
<dt class="col-sm-3">License</dt> | ||
<dd class="col-sm-9"> | ||
<p>Apache-2.0</p> | ||
</dd> | ||
<dt class="col-sm-3">Source</dt> | ||
<dd class="col-sm-9"> | ||
<dl class="row"> | ||
<dd> | ||
<a href="https://github.com/input-output-hk/typed-protocols/tree/d127d3ebd1850b7d1aa6eb75c0b040b1f94d0e24/typed-protocols">https://github.com/input-output-hk/typed-protocols</a> | ||
</dd> | ||
<dt>Commit hash</dt> | ||
<dd>d127d3ebd1850b7d1aa6eb75c0b040b1f94d0e24</dd> | ||
<dt>Subdir</dt> | ||
<dd>typed-protocols</dt> | ||
</dl> | ||
</dd> | ||
<dt class="col-sm-3">Timestamp</dt> | ||
<dd class="col-sm-9"> | ||
<p>2024-09-26T15:16:07Z</p> | ||
</dd> | ||
<dt class="col-sm-3">Revisions</dt> | ||
<dd class="col-sm-9"> | ||
<p>None</p> | ||
</dd> | ||
<dt class="col-sm-3">Dependencies</dt> | ||
<dd class="col-sm-9"> | ||
<dl> | ||
<dt>library typed-protocols:</dt> | ||
<dd> | ||
<ul class="build-depends"> | ||
<li>["base","io-classes >=1.0 && <1.6","singletons >=3.0"]</li> | ||
</ul> | ||
</dd> | ||
</dl> | ||
</dd> | ||
</dl> | ||
</div> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
cabal-version: 3.4 | ||
name: typed-protocols | ||
version: 0.3.0.0 | ||
synopsis: A framework for strongly typed protocols | ||
-- description: | ||
license: Apache-2.0 | ||
license-files: | ||
LICENSE | ||
NOTICE | ||
copyright: 2019-2023 Input Output Global Inc (IOG) | ||
author: Alexander Vieth, Duncan Coutts, Marcin Szamotulski | ||
maintainer: [email protected], [email protected], [email protected] | ||
category: Control | ||
build-type: Simple | ||
tested-with: GHC == {8.10, 9.2, 9.4, 9.6} | ||
extra-source-files: CHANGELOG.md | ||
|
||
library | ||
exposed-modules: Network.TypedProtocol | ||
, Network.TypedProtocol.Core | ||
, Network.TypedProtocol.Peer | ||
, Network.TypedProtocol.Peer.Client | ||
, Network.TypedProtocol.Peer.Server | ||
, Network.TypedProtocol.Codec | ||
, Network.TypedProtocol.Driver | ||
, Network.TypedProtocol.Proofs | ||
other-modules: Network.TypedProtocol.Lemmas | ||
|
||
other-extensions: GADTs | ||
, RankNTypes | ||
, PolyKinds | ||
, DataKinds | ||
, ScopedTypeVariables | ||
, TypeFamilies | ||
, TypeOperators | ||
, BangPatterns | ||
build-depends: base, | ||
io-classes >= 1.0 && < 1.6, | ||
singletons >= 3.0 | ||
|
||
hs-source-dirs: src | ||
default-language: Haskell2010 | ||
ghc-options: -Wall | ||
-Wno-unticked-promoted-constructors | ||
-Wcompat | ||
-Wincomplete-uni-patterns | ||
-Wincomplete-record-updates | ||
-Wpartial-fields | ||
-Widentities | ||
-Wredundant-constraints |
Oops, something went wrong.