chore: sample1

This commit is contained in:
2025-11-19 22:41:00 +09:00
commit 17414e5e3a
8 changed files with 157 additions and 0 deletions

47
package.yaml Normal file
View File

@@ -0,0 +1,47 @@
name: {{ project_name }}
version: 0.1.0.0
license: MIT
author: "{{ author_name }}"
maintainer: "{{ author_email }}"
extra-source-files:
- README.md
dependencies:
- base
- containers
- text
- bytestring
- mtl
- transformers
- unordered-containers
- optics
library:
source-dirs: src
dependencies:
- base
executables:
{{ project_name }}:
main: Main.hs
source-dirs: app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
dependencies:
- base
- {{ project_name }}
tests:
{{ project_name }}-test:
main: Main.hs
source-dirs: test
dependencies:
- base
- {{ project_name }}
- tasty
- tasty-hunit
- tasty-quickcheck
- QuickCheck