implemented the program

This commit is contained in:
vegowotenks 2024-09-26 23:58:27 +02:00
commit e58810fea4
16 changed files with 1144 additions and 0 deletions

73
ubcf.cabal Normal file
View file

@ -0,0 +1,73 @@
cabal-version: 2.2
-- This file has been generated from package.yaml by hpack version 0.35.2.
--
-- see: https://github.com/sol/hpack
name: ubcf
version: 0.1.0.0
description: Please see the README on GitHub at <https://github.com/githubuser/ubcf#readme>
homepage: https://github.com/githubuser/ubcf#readme
bug-reports: https://github.com/githubuser/ubcf/issues
author: VegOwOtenks
maintainer: vegowotenks@jossco.de
copyright: AGPL3
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/githubuser/ubcf
library
exposed-modules:
Lib
other-modules:
Paths_ubcf
autogen-modules:
Paths_ubcf
hs-source-dirs:
src
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints
build-depends:
base >=4.7 && <5
, binary
, bytestring
default-language: Haskell2010
executable ubcf-exe
main-is: Main.hs
other-modules:
Paths_ubcf
autogen-modules:
Paths_ubcf
hs-source-dirs:
app
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, binary
, bytestring
, ubcf
default-language: Haskell2010
test-suite ubcf-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_ubcf
autogen-modules:
Paths_ubcf
hs-source-dirs:
test
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, binary
, bytestring
, ubcf
default-language: Haskell2010