Skip to content

Commit

Permalink
Bump base upper bound on non-integral
Browse files Browse the repository at this point in the history
  • Loading branch information
erikd committed Jan 28, 2024
1 parent 3948c39 commit 0708876
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
4 changes: 4 additions & 0 deletions _sources/non-integral/1.0.0.0/meta.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@ subdir = 'libs/non-integral'
[[revisions]]
number = 1
timestamp = 2023-08-02T11:20:00Z

[[revisions]]
number = 2
timestamp = 2024-01-28T20:24:54Z
42 changes: 42 additions & 0 deletions _sources/non-integral/1.0.0.0/revisions/2.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
cabal-version: 3.0
name: non-integral
version: 1.0.0.0
license: Apache-2.0
maintainer: [email protected]
author: IOHK
description: Implementation decision for non-integer calculations
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md

source-repository head
type: git
location: https://github.com/input-output-hk/cardano-ledger.git
subdir: libs/non-integral

library
exposed-modules: Cardano.Ledger.NonIntegral
hs-source-dirs: src
default-language: Haskell2010
ghc-options:
-Wall -Wcompat -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wredundant-constraints -Wunused-packages

build-depends: base >=4.14 && <5

test-suite non-integral-test
type: exitcode-stdio-1.0
main-is: Tests.hs
hs-source-dirs: test
other-modules: Tests.Cardano.Ledger.NonIntegral
default-language: Haskell2010
ghc-options:
-Wall -Wcompat -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wredundant-constraints -Wunused-packages
-O2 -threaded -rtsopts -with-rtsopts=-N

build-depends:
base,
non-integral,
QuickCheck

0 comments on commit 0708876

Please sign in to comment.