|
| 1 | +cabal-version: 3.0 |
| 2 | +name: ouroboros-network-api |
| 3 | +version: 0.12.0.0 |
| 4 | +synopsis: A networking api shared with ouroboros-consensus |
| 5 | +description: A networking api shared with ouroboros-consensus. |
| 6 | +license: Apache-2.0 |
| 7 | +license-files: |
| 8 | + LICENSE |
| 9 | + NOTICE |
| 10 | + |
| 11 | +copyright: 2019-2023 Input Output Global Inc (IOG), 2023-2024 Intersect |
| 12 | +author: Alexander Vieth, Marcin Szamotulski, Duncan Coutts, Karl Knutsson |
| 13 | + |
| 14 | +category: Network |
| 15 | +build-type: Simple |
| 16 | +extra-doc-files: CHANGELOG.md |
| 17 | + |
| 18 | +flag asserts |
| 19 | + description: Enable assertions |
| 20 | + manual: False |
| 21 | + default: False |
| 22 | + |
| 23 | +library |
| 24 | + hs-source-dirs: src |
| 25 | + exposed-modules: |
| 26 | + Ouroboros.Network.AnchoredFragment |
| 27 | + Ouroboros.Network.AnchoredSeq |
| 28 | + Ouroboros.Network.Block |
| 29 | + Ouroboros.Network.BlockFetch.ConsensusInterface |
| 30 | + Ouroboros.Network.CodecCBORTerm |
| 31 | + Ouroboros.Network.ConsensusMode |
| 32 | + Ouroboros.Network.ControlMessage |
| 33 | + Ouroboros.Network.Handshake |
| 34 | + Ouroboros.Network.Handshake.Acceptable |
| 35 | + Ouroboros.Network.Handshake.Queryable |
| 36 | + Ouroboros.Network.Magic |
| 37 | + Ouroboros.Network.NodeToClient.Version |
| 38 | + Ouroboros.Network.NodeToNode.Version |
| 39 | + Ouroboros.Network.PeerSelection.Bootstrap |
| 40 | + Ouroboros.Network.PeerSelection.LedgerPeers.Type |
| 41 | + Ouroboros.Network.PeerSelection.LedgerPeers.Utils |
| 42 | + Ouroboros.Network.PeerSelection.LocalRootPeers |
| 43 | + Ouroboros.Network.PeerSelection.PeerAdvertise |
| 44 | + Ouroboros.Network.PeerSelection.PeerMetric.Type |
| 45 | + Ouroboros.Network.PeerSelection.PeerSharing |
| 46 | + Ouroboros.Network.PeerSelection.PeerSharing.Codec |
| 47 | + Ouroboros.Network.PeerSelection.PeerTrustable |
| 48 | + Ouroboros.Network.PeerSelection.RelayAccessPoint |
| 49 | + Ouroboros.Network.Point |
| 50 | + Ouroboros.Network.Protocol.Limits |
| 51 | + Ouroboros.Network.SizeInBytes |
| 52 | + Ouroboros.Network.Util.ShowProxy |
| 53 | + |
| 54 | + default-language: Haskell2010 |
| 55 | + default-extensions: ImportQualifiedPost |
| 56 | + build-depends: |
| 57 | + aeson, |
| 58 | + base >=4.14 && <4.22, |
| 59 | + base16-bytestring, |
| 60 | + bytestring >=0.10 && <0.13, |
| 61 | + cardano-binary, |
| 62 | + cardano-slotting, |
| 63 | + cardano-strict-containers, |
| 64 | + cborg >=0.2.1 && <0.3, |
| 65 | + containers, |
| 66 | + contra-tracer, |
| 67 | + deepseq, |
| 68 | + dns, |
| 69 | + io-classes ^>=1.5.0, |
| 70 | + iproute ^>=1.7.15, |
| 71 | + measures, |
| 72 | + network >=3.1.2 && <3.2, |
| 73 | + network-mux ^>=0.6, |
| 74 | + nothunks, |
| 75 | + quiet, |
| 76 | + serialise >=0.2 && <0.3, |
| 77 | + si-timers, |
| 78 | + strict-stm, |
| 79 | + text >=1.2 && <2.2, |
| 80 | + typed-protocols ^>=0.3, |
| 81 | + |
| 82 | + ghc-options: |
| 83 | + -Wall |
| 84 | + -Wno-unticked-promoted-constructors |
| 85 | + -Wcompat |
| 86 | + -Wincomplete-uni-patterns |
| 87 | + -Wincomplete-record-updates |
| 88 | + -Wpartial-fields |
| 89 | + -Widentities |
| 90 | + -Wredundant-constraints |
| 91 | + -Wunused-packages |
| 92 | + |
| 93 | + if flag(asserts) |
| 94 | + ghc-options: -fno-ignore-asserts |
0 commit comments