diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-06-05 22:47:49 +0200 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-06-05 23:36:34 +0200 |
commit | bfb98d7675515394e1b9a0417bfafc83d775611c (patch) | |
tree | dec841dc2ca6b79f8eaa777b90b3b1473f369c9d /common/common.cabal | |
parent | 2064b4e7767dca2858d8093597503a594dcd74ef (diff) |
add schema version
Diffstat (limited to 'common/common.cabal')
-rw-r--r-- | common/common.cabal | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/common/common.cabal b/common/common.cabal new file mode 100644 index 0000000..738d8be --- /dev/null +++ b/common/common.cabal @@ -0,0 +1,21 @@ +cabal-version: 3.4 +name: common +version: 0.1.0.0 +license: BSD-3-Clause +license-file: LICENSE +maintainer: aforemny@posteo.de +author: Alexander Foremny +build-type: Simple +extra-doc-files: CHANGELOG.md + +library + exposed-modules: Version + hs-source-dirs: src + default-language: GHC2021 + default-extensions: ViewPatterns + ghc-options: -Wall + build-depends: + aeson, + base, + split, + text |