-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump base depenency for monoidal-synchronisation
- Loading branch information
Showing
2 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
timestamp = 2024-01-23T08:57:37Z | ||
github = { repo = "intersectmbo/ouroboros-network", rev = "5618742c1e15ed1256fc62794eec7560040d8c0a" } | ||
subdir = 'monoidal-synchronisation' | ||
|
||
[[revisions]] | ||
number = 1 | ||
timestamp = 2024-07-15T22:57:14Z |
54 changes: 54 additions & 0 deletions
54
_sources/monoidal-synchronisation/0.1.0.5/revisions/1.cabal
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,54 @@ | ||
cabal-version: 3.0 | ||
|
||
name: monoidal-synchronisation | ||
version: 0.1.0.5 | ||
synopsis: Monoidal synchronisation | ||
description: Monoidal synchronisation. | ||
license: Apache-2.0 | ||
license-files: LICENSE | ||
NOTICE | ||
author: Marcin Szamotulski | ||
maintainer: coot@coot.me | ||
category: Network | ||
copyright: 2021-2023 Input Output Global Inc (IOG), 2023-2024 Intersect | ||
extra-doc-files: CHANGELOG.md | ||
|
||
library | ||
exposed-modules: Data.Monoid.Synchronisation | ||
build-depends: base >=4.14 && <4.21 | ||
hs-source-dirs: src | ||
default-language: Haskell2010 | ||
ghc-options: -Wall | ||
-Wcompat | ||
-Wincomplete-uni-patterns | ||
-Wincomplete-record-updates | ||
-Wpartial-fields | ||
-Widentities | ||
-Wredundant-constraints | ||
-Wno-unticked-promoted-constructors | ||
|
||
test-suite test | ||
type: exitcode-stdio-1.0 | ||
main-is: Main.hs | ||
hs-source-dirs: test | ||
other-modules: Test.Data.Monoid.Synchronisation | ||
build-depends: base >=4.14 && <4.21 | ||
|
||
, QuickCheck | ||
, tasty | ||
, tasty-quickcheck | ||
|
||
, io-classes | ||
, io-sim | ||
, monoidal-synchronisation | ||
default-language: Haskell2010 | ||
ghc-options: -rtsopts | ||
-threaded | ||
-Wall | ||
-Wcompat | ||
-Wincomplete-uni-patterns | ||
-Wincomplete-record-updates | ||
-Wpartial-fields | ||
-Widentities | ||
-Wredundant-constraints | ||
-Wno-unticked-promoted-constructors |