cabal-version: 2.2 -- This file has been generated from package.yaml by hpack version 0.34.6. -- -- see: https://github.com/sol/hpack -- -- hash: 14472c4593981cb3a8236b897e1f32c7d057dba3ff56d28ca41e124f541c29f4 name: uniformBase version: 0.1.3 synopsis: A uniform base to build apps on description: Goals: . - reducing the complexity for the programmer of applications, . - functions with identical semantics independent of representation, . - all functions are total (or become so using Maybe or Either), . - compatible error reporting for all packages, . - avoid name clashes with other packages and assume the regular prelude, . - performance is NOT a goal - once the program logic is confirmed and tested, performance improvements can be achieved based on observations . The packages included here deal with . - a generally usable zero (null) value and other simplistic algebras, . - handling of text independent of represenations and principled conversion between representations, . - a minimal error reporting as text error messages, . - bringing together functions to handle time, . - uniform functions to handle files and filepaths (`Filepath` and `Path`). . Please see the README on GitHub at category: Programming Uniform bug-reports: https://github.com/andrewufrank/uniformBase/issues author: Andrew Frank maintainer: Andrew U. Frank copyright: 2021 Andrew U. Frank license: GPL-2.0-only license-file: LICENSE build-type: Simple extra-source-files: README.md ChangeLog.md library exposed-modules: UniformBase other-modules: Paths_uniformBase hs-source-dirs: src build-depends: base >=4.7 && <5 , uniform-algebras >=0.1.2 , uniform-error >=0.1.0 , uniform-fileio >=0.1.2 , uniform-strings >=0.1.2 , uniform-time >=0.1.0 default-language: Haskell2010 autogen-modules: Paths_uniformBase