Format and add string-conv

This commit is contained in:
Stefan Risberg 2024-07-15 15:46:01 +02:00
parent d2dd96b709
commit a43eb4fe62
2 changed files with 31 additions and 28 deletions

View File

@ -1,13 +1,14 @@
name: ris-utils ---
version: 0.0.3 name: ris-utils
homepage: "https://git.fiskhamn.se/steffenomak/ris-utils#readme" version: 0.0.3
license: BSD3 homepage: "https://git.fiskhamn.se/steffenomak/ris-utils#readme"
author: "Stefan Risberg" license: BSD3
maintainer: "steffenomak@gmail.com" author: "Stefan Risberg"
copyright: "2023 Stefan Risberg" maintainer: "steffenomak@gmail.com"
copyright: "2023 Stefan Risberg"
extra-source-files: extra-source-files:
- README.md - README.md
# Metadata used when publishing your package # Metadata used when publishing your package
# synopsis: Short description of your package # synopsis: Short description of your package
@ -16,30 +17,31 @@ extra-source-files:
# To avoid duplicated efforts in documentation and dealing with the # To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is # complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file. # common to point users to the README.md file.
description: Please see the README at <https://git.fiskhamn.se/steffenomak/ris-utils#readme> description: Please see the README at <https://git.fiskhamn.se/steffenomak/ris-utils#readme>
dependencies: dependencies:
- base >= 4.7 && < 5 - base >= 4.7 && < 5
- text == 2.* - text == 2.*
- effectful-core >= 2.2.2.0 && < 3 - effectful-core >= 2.2.2.0 && < 3
- effectful >= 2.2.2.0 && < 3 - effectful >= 2.2.2.0 && < 3
- effectful-th == 1.* - effectful-th == 1.*
- chronos >= 1.1.5 && < 2 - chronos >= 1.1.5 && < 2
- torsor == 0.1 - torsor == 0.1
- unliftio == 0.2.* - unliftio == 0.2.*
- co-log-core == 0.3.* - co-log-core == 0.3.*
- bytestring == 0.11.* - bytestring == 0.11.*
- string-conv == 0.2.*
ghc-options: ghc-options:
- -Wall - -Wall
- -Wcompat - -Wcompat
- -Widentities - -Widentities
- -Wincomplete-record-updates - -Wincomplete-record-updates
- -Wincomplete-uni-patterns - -Wincomplete-uni-patterns
- -Wmissing-export-lists - -Wmissing-export-lists
- -Wmissing-home-modules - -Wmissing-home-modules
- -Wpartial-fields - -Wpartial-fields
- -Wredundant-constraints - -Wredundant-constraints
library: library:
source-dirs: src source-dirs: src

View File

@ -62,6 +62,7 @@ library
, effectful >=2.2.2.0 && <3 , effectful >=2.2.2.0 && <3
, effectful-core >=2.2.2.0 && <3 , effectful-core >=2.2.2.0 && <3
, effectful-th ==1.* , effectful-th ==1.*
, string-conv ==0.2.*
, text ==2.* , text ==2.*
, torsor ==0.1 , torsor ==0.1
, unliftio ==0.2.* , unliftio ==0.2.*