Skip to content

Commit

Permalink
Bump base dependency on fs-sim 0.2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
erikd committed Jul 15, 2024
1 parent 0e35405 commit 6747bdc
Show file tree
Hide file tree
Showing 2 changed files with 89 additions and 0 deletions.
4 changes: 4 additions & 0 deletions _sources/fs-sim/0.2.1.1/meta.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@ timestamp = 2024-06-06T15:28:08Z
[[revisions]]
number = 3
timestamp = 2024-07-15T00:42:50Z

[[revisions]]
number = 4
timestamp = 2024-07-15T05:04:54Z
85 changes: 85 additions & 0 deletions _sources/fs-sim/0.2.1.1/revisions/4.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
cabal-version: 3.0
name: fs-sim
version: 0.2.1.1
synopsis: Simulated file systems
description: Simulated file systems.
license: Apache-2.0
license-files:
LICENSE
NOTICE

copyright: 2019-2023 Input Output Global Inc (IOG)
author: IOG Engineering Team
maintainer: operations@iohk.io
category: Testing
build-type: Simple
extra-doc-files: CHANGELOG.md
tested-with: GHC ==8.10 || ==9.2 || ==9.4 || ==9.6 || ==9.8

source-repository head
type: git
location: https://github.com/input-output-hk/fs-sim
subdir: fs-sim

library
hs-source-dirs: src
exposed-modules:
System.FS.Sim.Error
System.FS.Sim.FsTree
System.FS.Sim.MockFS
System.FS.Sim.Pure
System.FS.Sim.STM
System.FS.Sim.Stream

default-language: Haskell2010
build-depends:
, base >=4.14 && <4.21
, base16-bytestring
, bytestring >=0.10 && <0.13
, containers >=0.5 && <0.7
, fs-api ^>=0.2
, io-classes >=0.3 && <1.6
, mtl
, QuickCheck
, strict-stm >=0.3 && <1.6
, text >=1.2 && <2.2

ghc-options:
-Wall -Wcompat -Wincomplete-uni-patterns
-Wincomplete-record-updates -Wpartial-fields -Widentities
-Wredundant-constraints -Wmissing-export-lists -Wunused-packages

test-suite fs-sim-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules:
Test.System.FS.Sim.FsTree
Test.System.FS.StateMachine
Test.Util.RefEnv

default-language: Haskell2010
build-depends:
, base
, bifunctors
, bytestring
, containers
, fs-api
, fs-sim
, generics-sop
, pretty-show
, QuickCheck
, quickcheck-state-machine >=0.7.2 && <0.8
, random
, tasty
, tasty-hunit
, tasty-quickcheck
, temporary
, text
, tree-diff

ghc-options:
-Wall -Wcompat -Wincomplete-uni-patterns
-Wincomplete-record-updates -Wpartial-fields -Widentities
-Wredundant-constraints -Wmissing-export-lists -Wunused-packages
-fno-ignore-asserts

0 comments on commit 6747bdc

Please sign in to comment.